diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-07-27 17:59:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-07-27 17:59:04 -0300 |
commit | 22c20a9763dc60d73990ac2e99e45c31c9677cc4 (patch) | |
tree | 68dde0e61b8df1892fff66b941c71304b36f6253 /db | |
parent | cc1eaecd044d712597521891342d1860e1a14976 (diff) | |
download | serverdata-22c20a9763dc60d73990ac2e99e45c31c9677cc4.tar.gz serverdata-22c20a9763dc60d73990ac2e99e45c31c9677cc4.tar.bz2 serverdata-22c20a9763dc60d73990ac2e99e45c31c9677cc4.tar.xz serverdata-22c20a9763dc60d73990ac2e99e45c31c9677cc4.zip |
Add Cake to heal the homunculus. Blueberry Cake is not yet released.
Diffstat (limited to 'db')
-rw-r--r-- | db/re/item_db.conf | 112 | ||||
-rw-r--r-- | db/re/mob_db.conf | 17 |
2 files changed, 126 insertions, 3 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index f4517f021..2464295be 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -19535,7 +19535,7 @@ item_db: ( noauction: true } Script: <" - setarray .@r, MercBoxC, CrazyRum, Manapple, Dragonfruit, JasmineTea, TreasureMap, MysteriousBottle, Lockpicks, ArcmageBoxset, TreasureKey, CoinBag, WurtziteOre; // ~8.33% each + setarray .@r, MercBoxC, CrazyRum, Manapple, Dragonfruit, JasmineTea, TreasureMap, MysteriousBottle, Lockpicks, ArcmageBoxset, TreasureKey, CoinBag, WurtziteOre, ChocolateCake; // ~8.33% each .@n=rand(getarraysize(.@r)); getitem .@r[.@n], 1; "> @@ -19557,7 +19557,7 @@ item_db: ( noauction: true } Script: <" - setarray .@r, MercBoxD, AncientBlueprint, WhiskeyAle, ElixirOfLife, Dragonfruit, YerbaMate, BronzeGift, TreasureMap, MysteriousBottle, Lockpicks, HousingLetterI, BrokenWarpCrystal, StatusResetPotion, ArcmageBoxset, TitaniumOre, LOFCoin, GrapheneStone; // ~5.88% each + setarray .@r, MercBoxD, AncientBlueprint, WhiskeyAle, ElixirOfLife, Dragonfruit, YerbaMate, BronzeGift, TreasureMap, MysteriousBottle, Lockpicks, HousingLetterI, BrokenWarpCrystal, StatusResetPotion, ArcmageBoxset, TitaniumOre, LOFCoin, GrapheneStone, WhiteCake; // ~5.88% each .@n=rand(getarraysize(.@r)); getitem .@r[.@n], 1; "> @@ -20149,6 +20149,114 @@ item_db: ( noauction: true } }, +{ + Id: 8061 + AegisName: "LemonCake" + Name: "Lemon Cake" + Type: "IT_HEALING" + Buy: 180 + Sell: 60 + Weight: 10 + Refine: false + Delay: 500 + UseEffect: "EFFECT_HEAL" + Script: <" + if (@useType == 1) + callfunc("ItHeal2", 4, 1); + else + callfunc("HomunHeal", 20, 10); + "> +}, +{ + Id: 8062 + AegisName: "OrangeCake" + Name: "Orange Cake" + Type: "IT_HEALING" + Buy: 360 + Sell: 120 + Weight: 10 + Refine: false + Delay: 500 + UseEffect: "EFFECT_HEAL" + Script: <" + if (@useType == 1) + callfunc("ItHeal2", 4, 2); + else + callfunc("HomunHeal", 40, 10); + "> +}, +{ + Id: 8063 + AegisName: "ChocolateCake" + Name: "Chocolate Cake" + Type: "IT_HEALING" + Buy: 540 + Sell: 180 + Weight: 10 + Refine: false + Delay: 500 + UseEffect: "EFFECT_HEAL" + Script: <" + if (@useType == 1) + callfunc("ItHeal2", 4, 3); + else + callfunc("HomunHeal", 60, 10); + "> +}, +{ + Id: 8064 + AegisName: "WhiteCake" + Name: "White Cake" + Type: "IT_HEALING" + Buy: 720 + Sell: 240 + Weight: 10 + Refine: false + Delay: 500 + UseEffect: "EFFECT_HEAL" + Script: <" + if (@useType == 1) + callfunc("ItHeal2", 4, 4); + else + callfunc("HomunHeal", 80, 10); + "> +}, +{ + Id: 8065 + AegisName: "AppleCake" + Name: "Apple Cake" + Type: "IT_HEALING" + Buy: 900 + Sell: 300 + Weight: 10 + Refine: false + Delay: 500 + UseEffect: "EFFECT_HEAL" + Script: <" + if (@useType == 1) + callfunc("ItHeal2", 4, 5); + else + callfunc("HomunHeal", 100, 10); + "> +}, +{ + Id: 8066 + AegisName: "BlueberryCake" + Name: "Blueberry Cake" + Type: "IT_HEALING" + Buy: 900 + Sell: 300 + Weight: 10 + Refine: false + Delay: 500 + UseEffect: "EFFECT_HEAL" + Script: <" + if (@useType == 1) + callfunc("MPHeal", 4, 50, 100); + else + callfunc("HomunHeal", 200, 10); // TODO FIXME: BROKEN (no MP regen) + "> +}, ) diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index 0fa5017b1..aa1571ebb 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -5041,6 +5041,7 @@ mob_db: ( DamageMotion: 200 Drops: { RedApple: 400 + LemonCake: 300 MoubooSteak: 215 Cherry: 8 BloodyMoubooHat: 1 @@ -5090,6 +5091,7 @@ mob_db: ( SulfurPowder: 480 DarkCrystal: 350 CottonCloth: 51 + WhiteCake: 30 PumpkinHat: 1 } }, @@ -8735,6 +8737,7 @@ mob_db: ( Drops: { Coal: 700 AnimalBones: 420 + WhiteCake: 210 Cherry: 32 } }, @@ -9225,6 +9228,7 @@ mob_db: ( DamageMotion: 200 Drops: { BronzeBossGift: 1000 + OrangeCake: 340 CherryCake: 60 ThetaRing: 2 } @@ -9971,8 +9975,8 @@ mob_db: ( Drops: { ChocolateBar: 6000 ChocolateBar: 3600 - ChocolateBar: 1000 ChocolateBiscuit: 800 + ChocolateCake: 400 Pear: 75 ChocolateMouboo: 40 LOFCoin: 10 @@ -10904,6 +10908,7 @@ mob_db: ( ViewRange: 7 ChaseRange: 11 Drops: { + AppleCake: 200 FluoPowder: 900 FluoPowder: 50 DodgeDonut: 30 @@ -10949,6 +10954,7 @@ mob_db: ( ViewRange: 7 ChaseRange: 11 Drops: { + AppleCake: 200 FluoPowder: 900 FluoPowder: 50 DodgeDonut: 30 @@ -10994,6 +11000,7 @@ mob_db: ( ViewRange: 7 ChaseRange: 11 Drops: { + AppleCake: 200 FluoPowder: 900 FluoPowder: 50 DodgeDonut: 30 @@ -11039,6 +11046,7 @@ mob_db: ( ViewRange: 7 ChaseRange: 11 Drops: { + AppleCake: 200 FluoPowder: 900 FluoPowder: 50 DodgeDonut: 30 @@ -11084,6 +11092,7 @@ mob_db: ( ViewRange: 7 ChaseRange: 11 Drops: { + AppleCake: 300 FluoPowder: 900 FluoPowder: 100 DodgeDonut: 40 @@ -11130,6 +11139,7 @@ mob_db: ( ViewRange: 7 ChaseRange: 11 Drops: { + AppleCake: 300 FluoPowder: 900 FluoPowder: 100 DodgeDonut: 40 @@ -11176,6 +11186,7 @@ mob_db: ( ViewRange: 7 ChaseRange: 11 Drops: { + AppleCake: 300 FluoPowder: 900 FluoPowder: 100 DodgeDonut: 40 @@ -11222,6 +11233,7 @@ mob_db: ( ViewRange: 7 ChaseRange: 11 Drops: { + AppleCake: 300 FluoPowder: 900 FluoPowder: 100 DodgeDonut: 40 @@ -11363,6 +11375,7 @@ mob_db: ( ViewRange: 7 ChaseRange: 11 Drops: { + LemonCake: 540 Fungus: 200 SparklyStrawberryDonut: 60 DodgeDonut: 20 @@ -11593,6 +11606,7 @@ mob_db: ( ChaseRange: 11 Drops: { ArtichokeHerb: 2800 + OrangeCake: 140 ChocolateDonut: 100 Fungus: 50 Cherry: 40 @@ -12540,6 +12554,7 @@ mob_db: ( DamageMotion: 200 Drops: { Brainstem: 450 + LemonCake: 40 Cherry: 5 } }, |