diff options
Diffstat (limited to 'db')
-rw-r--r-- | db/re/item_chain.conf | 7 | ||||
-rw-r--r-- | db/re/item_db.conf | 43 |
2 files changed, 50 insertions, 0 deletions
diff --git a/db/re/item_chain.conf b/db/re/item_chain.conf index 0db09c236..06ee4cec1 100644 --- a/db/re/item_chain.conf +++ b/db/re/item_chain.conf @@ -50,3 +50,10 @@ ITMCHAIN_ARROW: { ArrowAmmoBox: 9 } +ITMCHAIN_BULLET: { + Bullet: 17000 + SmallBulletSack: 900 + MediumBulletSack: 420 + BigBulletSack: 190 +} + diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 89379f68b..542d99074 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -13299,6 +13299,7 @@ item_db: ( Id6511: 1 } Script: <" + bonus2 bAddMonsterDropChainItem,ITMCHAIN_BULLET,RC_All; bonus bFleeRate,-100; bonus bCriticalRate,40; "> @@ -13338,6 +13339,7 @@ item_db: ( Id6511: 1 } Script: <" + bonus2 bAddMonsterDropChainItem,ITMCHAIN_BULLET,RC_All; bonus bAtk,-50; //bonus bAtkRate,-60; bonus bCriticalRate,-100; @@ -13380,6 +13382,7 @@ item_db: ( Id6511: 1 } Script: <" + bonus2 bAddMonsterDropChainItem,ITMCHAIN_BULLET,RC_All; bonus bSplashRange,1; bonus bFleeRate,-100; "> @@ -13418,6 +13421,9 @@ item_db: ( Id6510: 1 Id6511: 1 } + Script: <" + bonus2 bAddMonsterDropChainItem,ITMCHAIN_BULLET,RC_All; + "> }, { Id: 6050 @@ -13454,6 +13460,7 @@ item_db: ( Id6511: 1 } Script: <" + bonus2 bAddMonsterDropChainItem,ITMCHAIN_BULLET,RC_All; bonus bFleeRate,-100; bonus bCriticalRate,40; "> @@ -15115,6 +15122,42 @@ item_db: ( getitem TolchiArrow, rand(80, 100); "> }, +{ + Id: 8010 + AegisName: "SmallBulletSack" + Name: "Small Bullet Sack" + Type: "IT_USABLE" + Buy: 120 + Sell: 60 + Weight: 80 + Script: <" + getitem Bullet, rand(10, 15); + "> +}, +{ + Id: 8011 + AegisName: "MediumBulletSack" + Name: "Medium Bullet Sack" + Type: "IT_USABLE" + Buy: 420 + Sell: 210 + Weight: 280 + Script: <" + getitem Bullet, rand(35, 45); + "> +}, +{ + Id: 8012 + AegisName: "BigBulletSack" + Name: "Small Bullet Sack" + Type: "IT_USABLE" + Buy: 960 + Sell: 480 + Weight: 640 + Script: <" + getitem Bullet, rand(80, 95); + "> +}, ) |