diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-11 13:14:25 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-11 13:14:25 -0300 |
commit | 27d9a029fdcb3c2402c5a8c72be7e6a7bf1c5dfe (patch) | |
tree | 9da1eee162a0ebcce61e7621a84a543b9e49695b /db/re | |
parent | 12206692d02c1dd7732cdaf00773f08c5891546f (diff) | |
download | serverdata-27d9a029fdcb3c2402c5a8c72be7e6a7bf1c5dfe.tar.gz serverdata-27d9a029fdcb3c2402c5a8c72be7e6a7bf1c5dfe.tar.bz2 serverdata-27d9a029fdcb3c2402c5a8c72be7e6a7bf1c5dfe.tar.xz serverdata-27d9a029fdcb3c2402c5a8c72be7e6a7bf1c5dfe.zip |
Guns now drop Bullets too
Diffstat (limited to 'db/re')
-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); + "> +}, ) |