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/017-7 | |
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/017-7')
-rw-r--r-- | npc/017-7/doorbell.txt | 1 | ||||
-rw-r--r-- | npc/017-7/utils.txt | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/npc/017-7/doorbell.txt b/npc/017-7/doorbell.txt index 1be18ad8b..a944dc83e 100644 --- a/npc/017-7/doorbell.txt +++ b/npc/017-7/doorbell.txt @@ -271,6 +271,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/017-7/utils.txt b/npc/017-7/utils.txt index 28f69e283..6541d6a03 100644 --- a/npc/017-7/utils.txt +++ b/npc/017-7/utils.txt @@ -68,6 +68,7 @@ OnReload: load_npc("Wardrobe#RES_0177", .mapa$, 21, 23); load_npc("Cauldron#RES_0177", .mapa$, 28, 24); load_npc("Piano#RES_0177" , .mapa$, 34, 25); + load_npc("Stove#RES_0177" , .mapa$, 23, 24); end; } |