From a86ad2ebeb9cd052ab8cbb11ccd6c6f5b2334f5b Mon Sep 17 00:00:00 2001 From: Micksha Date: Thu, 25 Oct 2018 15:55:22 +0200 Subject: Add 3 varieties of Healing and Mana Potions, add iron and concentration potion. Only healing potions working for now. --- db/re/item_db.conf | 252 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 252 insertions(+) diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 560cc22b..955f7528 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -1352,6 +1352,258 @@ item_db: ( doevent "rand_sc_heal::OnUse"; "> }, +{ + Id: 600 + AegisName: "SmallHealing" + Name: "Small Healing Potion" + Type: "IT_HEALING" + Buy: 2500 + Sell: 300 + Weight: 32 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 600 + BindOnEquip: false + BuyingStore: true + Delay: 100 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 200; + @max = 300; + @delay = 3; + @type = 2; + doevent "rand_sc_heal::OnUse"; + "> +}, +{ + Id: 601 + AegisName: "MediumHealing" + Name: "Medium Healing Potion" + Type: "IT_HEALING" + Buy: 5000 + Sell: 650 + Weight: 64 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 601 + BindOnEquip: false + BuyingStore: true + Delay: 100 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 400; + @max = 600; + @delay = 4; + @type = 2; + doevent "rand_sc_heal::OnUse"; + "> +}, +{ + Id: 602 + AegisName: "LargeHealing" + Name: "Large Healing Potion" + Type: "IT_HEALING" + Buy: 10000 + Sell: 1250 + Weight: 128 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 602 + BindOnEquip: false + BuyingStore: true + Delay: 100 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 800; + @max = 1200; + @delay = 5; + @type = 2; + doevent "rand_sc_heal::OnUse"; + "> +}, +{ + Id: 603 + AegisName: "SmallMana" + Name: "Small Mana Potion" + Type: "IT_HEALING" + Buy: 2000 + Sell: 250 + Weight: 32 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 603 + BindOnEquip: false + BuyingStore: true + Delay: 205 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + bonus bMaxSP,20; + "> +}, +{ + Id: 604 + AegisName: "MediumMana" + Name: "Medium Mana Potion" + Type: "IT_HEALING" + Buy: 5000 + Sell: 600 + Weight: 64 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 604 + BindOnEquip: false + BuyingStore: true + Delay: 250 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + bonus bMaxSP,50; + "> +}, +{ + Id: 605 + AegisName: "LargeMana" + Name: "Large Mana Potion" + Type: "IT_HEALING" + Buy: 10000 + Sell: 1500 + Weight: 128 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 605 + BindOnEquip: false + BuyingStore: true + Delay: 250 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + bonus bMaxSP,100; + "> +}, +{ + Id: 606 + AegisName: "ConcPotion" + Name: "Concentration Potion" + Type: "IT_HEALING" + Buy: 2500 + Sell: 650 + Weight: 25 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 606 + BindOnEquip: false + BuyingStore: true + Delay: 100 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + bonus bAspd,50; + "> +}, +{ + Id: 607 + AegisName: "IronPotion" + Name: "Iron Potion" + Type: "IT_HEALING" + Buy: 2500 + Sell: 650 + Weight: 40 + Atk: 0 + Matk: 0 + Def: 0 + Range: 0 + Slots: 0 + Job: { + All: true + } + Gender: "SEX_ANY" + WeaponLv: 0 + EquipLv: 0 + Refine: false + ViewSprite: 606 + BindOnEquip: false + BuyingStore: true + Delay: 500 + Sprite: 0 + UseEffect: "EFFECT_HEAL" + Script: <" + bonus bStr,5; + "> +}, { Id: 700 AegisName: "SmallTentacles" -- cgit v1.2.3-60-g2f50