diff options
Diffstat (limited to 'npc/001-1/wateranimation.txt')
-rw-r--r-- | npc/001-1/wateranimation.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/npc/001-1/wateranimation.txt b/npc/001-1/wateranimation.txt new file mode 100644 index 000000000..1dc66c99f --- /dev/null +++ b/npc/001-1/wateranimation.txt @@ -0,0 +1,36 @@ +// TMW2 scripts. +// Author: +// Saulc +// Jesusalva +// Description: +// Water animations, splash, fishes, etc... + +001-1,254,70,0 script #water_animation_aeros0 NPC_WATER_SPLASH,{ + + fishing; // begin or continue fishing + close; + +OnInit: + // default fishes + setarray .common_fish, + CommonCarp, Roach, Tench; + + // rare fishes + setarray .rare_fish, + GrassCarp; + + .sex = G_OTHER; + .distance = 4; + end; +} + +001-1,250,72,0 duplicate(#water_animation_aeros0) #water_animation_aeros1 NPC_WATER_SPLASH +001-1,254,76,0 duplicate(#water_animation_aeros0) #water_animation_aeros2 NPC_WATER_SPLASH +001-1,247,77,0 duplicate(#water_animation_aeros0) #water_animation_aeros3 NPC_WATER_SPLASH + +001-1,105,112,0 duplicate(#water_animation_aeros0) #water_animation_aeros4 NPC_WATER_SPLASH +001-1,99,112,0 duplicate(#water_animation_aeros0) #water_animation_aeros5 NPC_WATER_SPLASH +001-1,94,110,0 duplicate(#water_animation_aeros0) #water_animation_aeros6 NPC_WATER_SPLASH +001-1,90,112,0 duplicate(#water_animation_aeros0) #water_animation_aeros7 NPC_WATER_SPLASH + + |