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/018-2 | |
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/018-2')
-rw-r--r-- | npc/018-2/_import.txt | 1 | ||||
-rw-r--r-- | npc/018-2/wateranimation.txt | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/npc/018-2/_import.txt b/npc/018-2/_import.txt index adb5e8745..cee0d2783 100644 --- a/npc/018-2/_import.txt +++ b/npc/018-2/_import.txt @@ -2,3 +2,4 @@ // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/018-2/_mobs.txt", "npc/018-2/_warps.txt", +"npc/018-2/wateranimation.txt", diff --git a/npc/018-2/wateranimation.txt b/npc/018-2/wateranimation.txt new file mode 100644 index 000000000..73a17835a --- /dev/null +++ b/npc/018-2/wateranimation.txt @@ -0,0 +1,22 @@ +// TMW2 scripts. +// Author: +// Jesusalva +// Description: +// Water animations, splash, fishes, etc... + +018-2,118,50,0 script #HH_WAM0 NPC_WATER_SPLASH,{ + + fishing(1, + CommonCarp, + Trout); + + close; + +OnInit: + .sex = G_OTHER; + .distance = 4; + end; +} + +018-2,41,49,0 duplicate(#HH_WAM0) #HH_WAM1 NPC_WATER_SPLASH +018-2,51,93,0 duplicate(#HH_WAM0) #HH_WAM2 NPC_WATER_SPLASH |