diff options
-rw-r--r-- | db/re/item_db.conf | 15 | ||||
-rw-r--r-- | npc/017-4/pihro.txt | 6 |
2 files changed, 20 insertions, 1 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 8c26e42bf..1ad545992 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -14281,6 +14281,21 @@ item_db: ( bonus bAtkEle,Ele_Holy; "> }, +{ + Id: 6512 + AegisName: "EvilBullet" + Name: "Evil Bullet" + Type: "IT_AMMO" + Buy: 12 + Sell: 2 + Weight: 1 + Atk: 10 + Loc: "EQP_AMMO" + Subtype: "A_BULLET" + Script: <" + bonus bAtkEle,Ele_Shadow; + "> +}, // <!-- Magical Weapons --> { Id: 7000 diff --git a/npc/017-4/pihro.txt b/npc/017-4/pihro.txt index 1f78fdd36..344bb8bc8 100644 --- a/npc/017-4/pihro.txt +++ b/npc/017-4/pihro.txt @@ -48,7 +48,7 @@ cond_check(.@base2, .@amon2) && cond_check(.@base3, .@amon3) && Zeny >= .@price) { - inventoryplace .@prize, 220; + inventoryplace .@prize, 320; delitem .@base1, .@amon1; if (.@base2 > 0) delitem .@base2, .@amon2; @@ -78,6 +78,7 @@ L_Craft: l("Nothing, sorry."), l("Normal Bullet"), l("Sacred Bullet"), + l("Evil Bullet"), l("Explosive ARROW"); switch (@menu) { @@ -89,6 +90,9 @@ L_Craft: craft_ammo(SacredBullet, 200, 1, WhiteFur, 5); goto L_Craft; case 4: + craft_ammo(EvilBullet, 200, 1, Bone, 1); + goto L_Craft; + case 5: craft_ammo(ExplosiveArrow, 300, 1, SulfurPowder, 5, WoodenLog, 3); goto L_Craft; } |