diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-20 11:49:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-20 11:49:57 -0300 |
commit | 03cbbf5e2ba23f9714baf42df157c0001599fb85 (patch) | |
tree | 6ec7d8a8183a5ac8034ffe08170c91d86ad5a97d /npc/009-6 | |
parent | d786c3b3977ef72b4b64248099274dd79b642258 (diff) | |
download | serverdata-03cbbf5e2ba23f9714baf42df157c0001599fb85.tar.gz serverdata-03cbbf5e2ba23f9714baf42df157c0001599fb85.tar.bz2 serverdata-03cbbf5e2ba23f9714baf42df157c0001599fb85.tar.xz serverdata-03cbbf5e2ba23f9714baf42df157c0001599fb85.zip |
This is the initial version of Cooking System (work in progress).
In particular:
- You cannot learn how to cook
- You cannot learn any recipe
- You cannot make flour
- You cannot cook Fruit Salad, Zombie Nachos nor Pancake
This also introduces changes to drops, as well as new items, incl. Donuts.
Partly Tested.
Diffstat (limited to 'npc/009-6')
-rw-r--r-- | npc/009-6/doorbell.txt | 1 | ||||
-rw-r--r-- | npc/009-6/utils.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/npc/009-6/doorbell.txt b/npc/009-6/doorbell.txt index 2f6796823..5a7444a4d 100644 --- a/npc/009-6/doorbell.txt +++ b/npc/009-6/doorbell.txt @@ -265,6 +265,7 @@ OnInit: create_object("Shelf 12" , 1, 2000, 8192, 38, 23, 38, 23); create_object("Piano" , 3, 10000, 1, 33, 25, 35, 25); + create_object("Stove" , 3, 40000, 2, 23, 24, 24, 24); create_object("Left Desk" , 2, 5000, 1, 20, 25, 22, 27); create_object("Right Desk" , 2, 5000, 2, 36, 30, 38, 32); diff --git a/npc/009-6/utils.txt b/npc/009-6/utils.txt index 65ffbb276..0652607fa 100644 --- a/npc/009-6/utils.txt +++ b/npc/009-6/utils.txt @@ -67,6 +67,7 @@ OnReload: // load_npc ( name , map, x , y{, cell} ) load_npc("Wardrobe#RES_0096", .mapa$, 21, 23); load_npc("Piano#RES_0096" , .mapa$, 34, 25); + load_npc("Stove#RES_0096" , .mapa$, 23, 24); end; } |