summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-01-08 12:47:21 -0200
committerJesusaves <cpntb1@ymail.com>2019-01-08 12:47:21 -0200
commit54bc9e5eaaade36ade100e69d96a02893f3f7c45 (patch)
tree2a9e4342e6acbf583e61fb545c52fbfd285411ca
parent3070ca7a2ae3f7b5f52c4cc318aae1c7fc7a6e0e (diff)
downloadserverdata-54bc9e5eaaade36ade100e69d96a02893f3f7c45.tar.gz
serverdata-54bc9e5eaaade36ade100e69d96a02893f3f7c45.tar.bz2
serverdata-54bc9e5eaaade36ade100e69d96a02893f3f7c45.tar.xz
serverdata-54bc9e5eaaade36ade100e69d96a02893f3f7c45.zip
Replace Terranite Quiver with an Iron Quiver and a Bronze Quiver (stats remastered)
-rw-r--r--db/re/item_db.conf54
-rw-r--r--npc/012-5/nicholas.txt10
2 files changed, 45 insertions, 19 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf
index 765a30a1d..2269ef560 100644
--- a/db/re/item_db.conf
+++ b/db/re/item_db.conf
@@ -5454,7 +5454,7 @@ item_db: (
debugmes "Quiver info! Target subtype: "+W_BOW;
*/
if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_SUBTYPE) == W_BOW) {
- bonus bAspdRate,6;
+ bonus bAspdRate,10;
bonus bAddMaxWeight,100;
}
bonus bMaxSPrate,-10;
@@ -5463,24 +5463,24 @@ item_db: (
},
{
Id: 1173
- AegisName: "TerraniteQuiver"
- Name: "Terranite Quiver"
+ AegisName: "BronzeQuiver"
+ Name: "Bronze Quiver"
Type: "IT_ARMOR"
Buy: 240000
- Sell: 5800
+ Sell: 6200
Weight: 140
Def: 0
Loc: "EQP_ACC_L"
- EquipLv: 50
+ EquipLv: 70
RequiredAgi: 25
Refine: false
Script: <"
if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_SUBTYPE) == W_BOW) {
- bonus bAspdRate,12;
- bonus bAddMaxWeight,200;
+ bonus bAspdRate,23;
+ bonus bAddMaxWeight,300;
}
- bonus bMaxSPrate,-20;
- bonus bLuk,-2;
+ bonus bMaxSPrate,-30;
+ bonus bLuk,-3;
">
},
{
@@ -5493,16 +5493,16 @@ item_db: (
Weight: 200
Def: 0
Loc: "EQP_ACC_L"
- EquipLv: 70
- RequiredAgi: 35
+ EquipLv: 90
+ RequiredAgi: 45
Refine: false
Script: <"
if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_SUBTYPE) == W_BOW) {
- bonus bAspdRate,20;
- bonus bAddMaxWeight,300;
+ bonus bAspdRate,30;
+ bonus bAddMaxWeight,400;
}
- bonus bMaxSPrate,-30;
- bonus bLuk,-3;
+ bonus bMaxSPrate,-40;
+ bonus bLuk,-4;
">
},
{
@@ -5518,7 +5518,7 @@ item_db: (
Refine: false
ViewSprite: 1175
Script: <"
- bonus bAddMaxWeight,600;
+ bonus bAddMaxWeight,700;
bonus bMaxHP,-12;
">
},
@@ -5539,6 +5539,28 @@ item_db: (
bonus bMdef,25;
">
},
+{
+ Id: 1177
+ AegisName: "IronQuiver"
+ Name: "Iron Quiver"
+ Type: "IT_ARMOR"
+ Buy: 240000
+ Sell: 5800
+ Weight: 140
+ Def: 0
+ Loc: "EQP_ACC_L"
+ EquipLv: 50
+ RequiredAgi: 25
+ Refine: false
+ Script: <"
+ if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_SUBTYPE) == W_BOW) {
+ bonus bAspdRate,16;
+ bonus bAddMaxWeight,200;
+ }
+ bonus bMaxSPrate,-20;
+ bonus bLuk,-2;
+ ">
+},
///////////////////////////
// Chest Armors
{
diff --git a/npc/012-5/nicholas.txt b/npc/012-5/nicholas.txt
index 098362af3..93c30ac75 100644
--- a/npc/012-5/nicholas.txt
+++ b/npc/012-5/nicholas.txt
@@ -172,7 +172,8 @@ L_Quiver:
select
l("Nothing, sorry!"),
l("Leather Quiver"),
- l("Terranite Quiver"),
+ l("Iron Quiver"),
+ l("Bronze Quiver"),
l("Platinum Quiver");
switch (@menu) {
@@ -182,10 +183,13 @@ L_Quiver:
blacksmith_create(LeatherPatch, 35, TitaniumIngot, 1, LeatherQuiver, 2000);
break;
case 3:
- blacksmith_create(TerraniteOre, 160, Coal, 40, TerraniteQuiver, 3000); // TODO: Terranite Ingot
+ blacksmith_create(IronIngot, 16, Coal, 21, IronQuiver, 3000);
+ break;
+ case 3:
+ blacksmith_create(CopperIngot, 27, TinIngot, 3, BronzeQuiver, 4000);
break;
case 4:
- blacksmith_create(PlatinumIngot, 24, IridiumIngot, 8, PlatinumQuiver, 4000);
+ blacksmith_create(PlatinumIngot, 24, IridiumIngot, 8, PlatinumQuiver, 5000);
break;
}
goto L_Quiver;