diff options
author | Jedzkie <jedzkie13@rocketmail.com> | 2015-12-20 00:48:13 +0800 |
---|---|---|
committer | Jedzkie <jedzkie13@rocketmail.com> | 2015-12-20 00:48:13 +0800 |
commit | 55c98b69b783fc9e52116943cb40d13c4462c97c (patch) | |
tree | 8518cf658eface1b2ee59d39455227e6e94b7925 /db | |
parent | a782aa1540b63d5fffd55d835f6f30ee0c53d0f1 (diff) | |
download | hercules-55c98b69b783fc9e52116943cb40d13c4462c97c.tar.gz hercules-55c98b69b783fc9e52116943cb40d13c4462c97c.tar.bz2 hercules-55c98b69b783fc9e52116943cb40d13c4462c97c.tar.xz hercules-55c98b69b783fc9e52116943cb40d13c4462c97c.zip |
Item & Skill Update:
- Speed Potion & Guyak Pudding effects are now official.
• Movement Speed changed from 50% to 100%
• Removed its hard coded data in src.
• Cannot be Slowed by Quagmire, Decrease AGI, and Slow Grace.
- Modified Rudo Card effect.
- NPC_AGIUP movement speed is now official
• Movement speed changed from 50% to 100%
• Fixed 100% movement speed per level.
- Fix Slow Down Potion's movement speed reduction.
Diffstat (limited to 'db')
-rw-r--r-- | db/pre-re/item_db.conf | 13 | ||||
-rw-r--r-- | db/re/item_db.conf | 16 |
2 files changed, 15 insertions, 14 deletions
diff --git a/db/pre-re/item_db.conf b/db/pre-re/item_db.conf index e9d13f16b..589b007e8 100644 --- a/db/pre-re/item_db.conf +++ b/db/pre-re/item_db.conf @@ -61722,7 +61722,7 @@ item_db: ( Buy: 2 Weight: 100 BuyingStore: true - Script: <" sc_start SC_MOVHASTE_INFINITY,5000,0; "> + Script: <" sc_start SC_MOVHASTE_INFINITY, 5000, 100; "> }, { Id: 12017 @@ -61732,7 +61732,7 @@ item_db: ( Buy: 2 Weight: 100 BuyingStore: true - Script: <" sc_start SC_SLOWDOWN,5000,0; "> + Script: <" sc_start SC_SLOWDOWN, 5000, 100; "> }, { Id: 12018 @@ -69079,6 +69079,7 @@ item_db: ( Type: 2 Buy: 0 Weight: 200 + Script: <" sc_start SC_MOVHASTE_INFINITY, 300000, 100; "> }, { Id: 12711 @@ -81166,11 +81167,11 @@ item_db: ( notrade: true noselltonpc: true nocart: true - nogstorage: true nomail: true noauction: true + nogstorage: true } - Script: <" getitem 12016,5; "> + Script: <" getitem Speed_Up_Potion, 5; "> }, { Id: 13995 @@ -81184,11 +81185,11 @@ item_db: ( notrade: true noselltonpc: true nocart: true - nogstorage: true nomail: true noauction: true + nogstorage: true } - Script: <" getitem 12016,10; "> + Script: <" getitem Speed_Up_Potion, 10; "> }, { Id: 13996 diff --git a/db/re/item_db.conf b/db/re/item_db.conf index a01a9d3d1..f9cb7dd2a 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -41090,7 +41090,7 @@ item_db: ( Weight: 10 Loc: 64 Script: <" - autobonus "{ sc_start SC_MOVHASTE_INFINITY,3000,0; bonus bAgi,44; heal 0,-40; }",3,3000,0; + autobonus "{ sc_start SC_MOVHASTE_HORSE, 3000, 100; bonus bAgi, 44; heal 0, -40; }", 3, 3000, 0, "{ specialeffect2 EF_WIND; }"; "> }, { @@ -76642,7 +76642,7 @@ item_db: ( Buy: 2 Weight: 100 BuyingStore: true - Script: <" sc_start SC_MOVHASTE_INFINITY,5000,0; "> + Script: <" sc_start SC_MOVHASTE_INFINITY, 5000, 100; "> }, { Id: 12017 @@ -76652,7 +76652,7 @@ item_db: ( Buy: 2 Weight: 100 BuyingStore: true - Script: <" sc_start SC_SLOWDOWN,5000,0; "> + Script: <" sc_start SC_SLOWDOWN, 5000, 100; "> }, { Id: 12018 @@ -85625,7 +85625,7 @@ item_db: ( Type: 2 Buy: 0 Weight: 200 - Script: <" sc_start SC_MOVHASTE_INFINITY,300000,0; "> + Script: <" sc_start SC_MOVHASTE_INFINITY, 300000, 100; "> }, { Id: 12711 @@ -103469,11 +103469,11 @@ item_db: ( notrade: true noselltonpc: true nocart: true - nogstorage: true nomail: true noauction: true + nogstorage: true } - Script: <" getitem 12016,5; "> + Script: <" getitem Speed_Up_Potion, 5; "> }, { Id: 13995 @@ -103487,11 +103487,11 @@ item_db: ( notrade: true noselltonpc: true nocart: true - nogstorage: true nomail: true noauction: true + nogstorage: true } - Script: <" getitem 12016,10; "> + Script: <" getitem Speed_Up_Potion, 10; "> }, { Id: 13996 |