diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-23 09:56:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-23 09:56:21 -0300 |
commit | edf17ee6799d24e41e74d8dab9f9c722ff4c1b6a (patch) | |
tree | cfaab2758b679711c458105f8d1f02c5ad50886f | |
parent | 7b9def530c41346a3ad3427ff255133c0356ee25 (diff) | |
download | serverdata-edf17ee6799d24e41e74d8dab9f9c722ff4c1b6a.tar.gz serverdata-edf17ee6799d24e41e74d8dab9f9c722ff4c1b6a.tar.bz2 serverdata-edf17ee6799d24e41e74d8dab9f9c722ff4c1b6a.tar.xz serverdata-edf17ee6799d24e41e74d8dab9f9c722ff4c1b6a.zip |
(Small) Fishing Net.
-rw-r--r-- | db/re/item_db.conf | 11 | ||||
-rw-r--r-- | npc/003-1/eugene.txt | 8 | ||||
-rw-r--r-- | npc/003-1/wateranimation.txt | 20 |
3 files changed, 36 insertions, 3 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index dfaa4ea4e..9d6724faf 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -5423,6 +5423,17 @@ item_db: ( Weight: 40 Refine: false }, +{ + Id: 890 + AegisName: "SmallFishingNet" + Name: "Small Fishing Net" + Type: "IT_ETC" + Buy: 5000 + Sell: 150 + Weight: 60 + Refine: false + ViewSprite: 890 +}, // <!-- ID 900~910 Reserved --> { Id: 911 diff --git a/npc/003-1/eugene.txt b/npc/003-1/eugene.txt index e1aad9187..c7bb3c580 100644 --- a/npc/003-1/eugene.txt +++ b/npc/003-1/eugene.txt @@ -98,6 +98,7 @@ OnInit: .BaitCount = 10; tradertype(NST_MARKET); + sellitem SmallFishingNet, -1, 1; sellitem FishBox, -1, 5; sellitem CommonCarp, -1, 3; sellitem GrassCarp, -1, 1; @@ -110,9 +111,10 @@ OnClock0611: OnClock1200: OnClock1801: OnClock0003: - restoreshopitem FishBox, -1, 5; - restoreshopitem CommonCarp, -1, 3; - restoreshopitem GrassCarp, -1, 1; + restoreshopitem SmallFishingNet, 1; + restoreshopitem FishBox, 5; + restoreshopitem CommonCarp, 3; + restoreshopitem GrassCarp, 1; end; } diff --git a/npc/003-1/wateranimation.txt b/npc/003-1/wateranimation.txt index f99753da9..7dfa48f37 100644 --- a/npc/003-1/wateranimation.txt +++ b/npc/003-1/wateranimation.txt @@ -32,3 +32,23 @@ OnInit: 003-1,83,140,0 duplicate(#water_animation0) #water_animation13 NPC_WATER_SPLASH 003-1,72,147,0 duplicate(#water_animation0) #water_animation14 NPC_WATER_SPLASH 003-1,72,122,0 duplicate(#water_animation0) #water_animation15 NPC_WATER_SPLASH + + +003-1,71,58,0 script #lowsea_tulim0 NPC_WATER_SPLASH,{ + + fishing; // begin or continue fishing + close; + +OnInit: + .sex = G_OTHER; + .distance = 4; + .rod=SmallFishingNet; + .net_ratio=3; + .catch_time=8000; // You have 3 more seconds to pull here + .wait_time_min=8000; + .wait_time_max=21000; + .pull_rand_max=1600; + .regen_time=30; + end; +} + |