diff options
author | Micksha <Micksha@users.noreply.github.com> | 2020-09-21 15:24:28 +0200 |
---|---|---|
committer | Micksha <Micksha@users.noreply.github.com> | 2020-09-21 15:24:28 +0200 |
commit | ab5545a1f2522bdb04f215bf2a656513c7114dfa (patch) | |
tree | 4c8461af6f7dc65324fb43b5779d32da829999b3 | |
parent | 8d71d9d405828aa8fb057c4edad6f8ec22942fb4 (diff) | |
download | serverdata-ab5545a1f2522bdb04f215bf2a656513c7114dfa.tar.gz serverdata-ab5545a1f2522bdb04f215bf2a656513c7114dfa.tar.bz2 serverdata-ab5545a1f2522bdb04f215bf2a656513c7114dfa.tar.xz serverdata-ab5545a1f2522bdb04f215bf2a656513c7114dfa.zip |
add a bunch of recipes, update drops for mobs, missing equipment pending
-rw-r--r-- | db/craft_db.conf | 245 | ||||
-rw-r--r-- | db/re/item_db.conf | 299 | ||||
-rw-r--r-- | db/re/mob_db.conf | 278 | ||||
-rw-r--r-- | npc/items/recipes.txt | 23 |
4 files changed, 797 insertions, 48 deletions
diff --git a/db/craft_db.conf b/db/craft_db.conf index 3a15a948..deb6063c 100644 --- a/db/craft_db.conf +++ b/db/craft_db.conf @@ -18,7 +18,7 @@ craft_db: ( }, ... ) - CreateItems: ( // items what will be creted in crafting + CreateItems: ( // items what will be created in crafting { Name: amount ... @@ -154,6 +154,249 @@ Boots: 700 --> 799 } Priority: 10 }, +{ + Id: 3 + Name: "CraftSailorStew" + Flag: "CRAFT_COOKING" + SourceItems: + ( + { + CommonCarp: 3 + Carrot: 3 + Manana: 3 + RoastedAcorn: 5 + }, + { + GrassCarp: 1 + Carrot: 3 + Manana: 3 + RoastedAcorn: 5 + }, + ) + CreateItems: + ( + { + SailorStew: 1 + }, + ) + DeleteItems: { + EmptyBowl: 1 + } + RequiredItems: { + RecipeBook: 1 + } + Priority: 10 +}, +{ + Id: 4 + Name: "CraftSquirrelStew" + Flag: "CRAFT_COOKING" + SourceItems: + ( + { + SquirrelMeat: 2 + Carrot: 2 + Manana: 4 + RoastedAcorn: 5 + }, + ) + CreateItems: + ( + { + SquirrelStew: 1 + }, + ) + DeleteItems: { + EmptyBowl: 1 + } + RequiredItems: { + RecipeBook: 1 + } + Priority: 10 +}, +{ + Id: 5 + Name: "CraftMoubooStew" + Flag: "CRAFT_COOKING" + SourceItems: + ( + { + MoubooSteak: 1 + Carrot: 4 + Manana: 2 + RoastedAcorn: 5 + }, + ) + CreateItems: + ( + { + MoubooStew: 1 + }, + ) + DeleteItems: { + EmptyBowl: 1 + } + RequiredItems: { + RecipeBook: 1 + } + Priority: 10 +}, +{ + Id: 6 + Name: "CraftSeafoodPlate" + Flag: "CRAFT_COOKING" + SourceItems: + ( + { + CommonCarp: 2 + Salmon: 1 + UrchinMeat: 2 + Moss: 5 + }, + { + GrassCarp: 1 + Tuna: 1 + Tentacles: 3 + Moss: 5 + }, + ) + CreateItems: + ( + { + SeafoodPlate: 1 + }, + ) + DeleteItems: { + EmptyPlate: 1 + } + RequiredItems: { + RecipeBook: 1 + } + Priority: 10 +}, +{ + Id: 7 + Name: "BarbecuePlate" + Flag: "CRAFT_COOKING" + SourceItems: + ( + { + CommonCarp: 1 + MoubooSteak: 1 + SquirrelMeat: 2 + Carrot: 2 + }, + ) + CreateItems: + ( + { + BarbecuePlate: 1 + }, + ) + DeleteItems: { + EmptyPlate: 1 + } + RequiredItems: { + RecipeBook: 1 + } + Priority: 10 +}, +{ + Id: 8 + Name: "CraftVeggiePlate" + Flag: "CRAFT_COOKING" + SourceItems: + ( + { + RoastedAcorn: 3 + Carrot: 3 + Manana: 3 + Piberries: 5 + }, + ) + CreateItems: + ( + { + VeggiePlate: 1 + }, + ) + DeleteItems: { + EmptyPlate: 1 + } + RequiredItems: { + RecipeBook: 1 + } + Priority: 10 +}, +{ + Id: 9 + Name: "CraftDonut" + Flag: "CRAFT_COOKING" + SourceItems: + ( + { + AcornFlour: 3 + MoubooMilk: 1 + ChocolateBar: 1 + }, + ) + CreateItems: + ( + { + Donut: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 10 +}, +{ + Id: 10 + Name: "CraftBlueberryCake" + Flag: "CRAFT_COOKING" + SourceItems: + ( + { + AcornFlour: 4 + MoubooMilk: 1 + Blueberries: 3 + }, + ) + CreateItems: + ( + { + BlueberryCake: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 10 +}, +{ + Id: 11 + Name: "CraftCarrotCake" + Flag: "CRAFT_COOKING" + SourceItems: + ( + { + AcornFlour: 5 + MoubooMilk: 1 + Carrot: 2 + }, + ) + CreateItems: + ( + { + CarrotCake: 1 + }, + ) + RequiredItems: { + RecipeBook: 1 + } + Priority: 10 +}, /************************ CHEST ARMOR (SHIRTS) ********************************* ******************************************************************************** diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 9ad83b28..a5005a07 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -841,11 +841,12 @@ item_db: ( Delay: 1200 UseEffect: "EFFECT_HEAL" Script: <" - @min = 400; - @max = 600; - @delay = 8; + @min = 800; + @max = 1500; + @delay = 12; @type = 1; doevent "rand_sc_heal::OnUse"; + sc_start(SC_INC_HIT, 180000, 4); "> }, { @@ -859,11 +860,12 @@ item_db: ( Delay: 850 UseEffect: "EFFECT_HEAL" Script: <" - @min = 200; - @max = 350; - @delay = 4; + @min = 1000; + @max = 1500; + @delay =15; @type = 1; doevent "rand_sc_heal::OnUse"; + sc_start(SC_INC_HIT, 180000, 5); "> }, { @@ -877,11 +879,12 @@ item_db: ( Delay: 700 UseEffect: "EFFECT_HEAL" Script: <" - @min = 250; - @max = 450; - @delay = 5; + @min = 1200; + @max = 1800; + @delay = 10; @type = 1; doevent "rand_sc_heal::OnUse"; + sc_start(SC_INC_HIT, 180000, 3); "> }, { @@ -913,8 +916,8 @@ item_db: ( Delay: 450 UseEffect: "EFFECT_HEAL" Script: <" - @min = 100; - @max = 120; + @min = 300; + @max = 450; @delay = 10; @type = 1; doevent "rand_sc_heal::OnUse"; @@ -1211,9 +1214,16 @@ item_db: ( Weight: 650 Delay: 1000 Script: <" - sc_start SC_ATTHASTE_POTION1, 80000, 300; // These are totally placeholders. We want STR + 10 and VIT + 5 and max. HP + 2000 for three minutes. - sc_start SC_INCHITRATE, 80000, 300; - getitembound EmptyBowl, 1, IBT_ACCOUNT; + @min = 1800; + @max = 2400; + @delay = 5; + @type = 2; + doevent "rand_sc_heal::OnUse"; + bonus bMaxHPrate, 20; + sc_start(SC_INC_HIT, 180000, 5); + sc_start(SC_INC_VIT, 180000, 3); + sc_start(SC_DEC_AGI, 180000, 3); + getitembound EmptyBowl, 1, IBT_ACCOUNT; // TODO: Review and fix. "> }, { @@ -1282,9 +1292,9 @@ item_db: ( Id: 621 AegisName: "FriendGift" Name: "Friend Gift" - Buy: 0 - Sell: 0 - Weight: 0 + Buy: 50000 + Sell: 500 + Weight: 50 KeepAfterUse: false Trade: { notrade: true @@ -1298,6 +1308,193 @@ item_db: ( callfunc("OpenFriendGift"); "> }, +{ + Id: 622 + AegisName: "SquirrelStew" + Name: "Squirrel Stew" + Type: "IT_USABLE" + Buy: 50000 + Sell: 10 + Weight: 650 + Delay: 1000 + Script: <" + Script: <" + @min = 2000; + @max = 2800; + @delay = 6; + @type = 2; + doevent "rand_sc_heal::OnUse"; + bonus bMaxHPrate, 25; + sc_start(SC_INC_VIT, 240000, 5); + sc_start(SC_INC_AGI, 240000, 3); + sc_start(SC_INC_DEX, 240000, -3); + getitembound EmptyBowl, 1, IBT_ACCOUNT;// TODO: Review and fix. + "> +}, +{ + Id: 623 + AegisName: "MoubooStew" + Name: "Mouboo Stew" + Type: "IT_USABLE" + Buy: 50000 + Sell: 10 + Weight: 650 + Delay: 1000 + Script: <" + @min = 2500; + @max = 3000; + @delay = 6; + @type = 2; + doevent "rand_sc_heal::OnUse"; + bonus bMaxHPrate, 30; + sc_start(SC_INC_VIT, 300000, 5); + sc_start(SC_INC_DEX, 300000, 3); + sc_start(SC_DEC_AGI, 300000, 3); + getitembound EmptyBowl, 1, IBT_ACCOUNT;// TODO: Review and fix. + "> +}, +{ + Id: 624 + AegisName: "SquirrelMeat" + Name: "Squirrel Meat" + Type: "IT_HEALING" + Buy: 1500 + Sell: 120 + Weight: 150 +}, +{ + Id: 625 + AegisName: "SeafoodPlate" + Name: "Seafood Plate" + Type: "IT_USABLE" + Buy: 50000 + Sell: 10 + Weight: 400 + Delay: 1000 + Script: <" + @min = 2000; + @max = 3000; + @delay = 9; + @type = 2; + doevent "rand_sc_heal::OnUse"; + bonus bMaxHPrate, 20; + sc_start(SC_INC_VIT, 300000, 5); + sc_start(SC_INC_DEX, 300000, 3); + sc_start(SC_INC_AGI, 300000, 3); + getitembound EmptyPlate, 1, IBT_ACCOUNT;// TODO: Review and fix. + "> +}, +{ + Id: 626 + AegisName: "BarbecuePlate" + Name: "Barbecue Plate" + Type: "IT_USABLE" + Buy: 50000 + Sell: 10 + Weight: 500 + Delay: 1000 + Script: <" + @min = 2800; + @max = 3200; + @delay = 10; + @type = 2; + doevent "rand_sc_heal::OnUse"; + bonus bMaxHPrate, 25; + sc_start(SC_INC_VIT, 360000, 5); + sc_start(SC_INC_DEX, 360000, 5); + getitembound EmptyPlate, 1, IBT_ACCOUNT;// TODO: Review and fix. + "> +}, +{ + Id: 627 + AegisName: "VeggiePlate" + Name: "Veggie Plate" + Type: "IT_USABLE" + Buy: 50000 + Sell: 10 + Weight: 450 + Delay: 1000 + Script: <" + @min = 3000; + @max = 4500; + @delay = 8; + @type = 2; + doevent "rand_sc_heal::OnUse"; + bonus bMaxHPrate, 15; + sc_start(SC_INC_VIT, 300000, 10); + sc_start(SC_INC_DEX, 300000, 3); + getitembound EmptyPlate, 1, IBT_ACCOUNT;// TODO: Review and fix. + "> +}, +{ + Id: 628 + AegisName: "Blueberries" + Name: "Blueberries" + Type: "IT_HEALING" + Buy: 200 + Sell: 15 + Weight: 30 +}, +{ + Id: 629 + AegisName: "Donut" + Name: "Donut" + Type: "IT_HEALING" + Buy: 1500 + Sell: 350 + Weight: 100 + Delay: 700 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 2000; + @max = 2500; + @delay = 5; + @type = 1; + doevent "rand_sc_heal::OnUse"; + sc_start(SC_INC_LUK, 60000, 5); + sc_start(SC_INC_VIT, 60000, 3); + "> +}, +{ + Id: 630 + AegisName: "BlueberryCake" + Name: "Blueberry Cake" + Type: "IT_HEALING" + Buy: 2100 + Sell: 320 + Weight: 150 + Delay: 700 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 1800; + @max = 2400; + @delay = 3; + @type = 1; + doevent "rand_sc_heal::OnUse"; + sc_start(SC_INC_VIT, 90000, 5); + sc_start(SC_INC_AGI, 90000, 3); + "> +}, +{ + Id: 631 + AegisName: "CarrotCake" + Name: "Carrot Cake" + Type: "IT_HEALING" + Buy: 1400 + Sell: 270 + Weight: 180 + Delay: 700 + UseEffect: "EFFECT_HEAL" + Script: <" + @min = 2500; + @max = 2850; + @delay = 4; + @type = 1; + doevent "rand_sc_heal::OnUse"; + sc_start(SC_INC_INT, 120000, 5); + sc_start(SC_INC_DEX, 120000, 3); + "> +}, // Generic { Id: 700 @@ -2248,32 +2445,98 @@ item_db: ( Type: "IT_ETC" Buy: 500 Sell: 110 - Weight: 2 + Weight: 20 }, { Id: 809 AegisName: "CottonCloth" Name: "Cotton Cloth" + Weight: 10 }, { Id: 810 AegisName: "LeatherPatch" Name: "Leather Patch" + Weight: 50 }, { Id: 811 AegisName: "SnakeScale" Name: "Snake Scale" + Weight: 25 }, { Id: 812 AegisName: "SquirrelPelt" Name: "Squirrel Pelt" + Weight: 200 }, { Id: 813 + AegisName: "WolvernPelt" + Name: "Wolvern Pelt" + Weight: 500 +}, +{ + Id: 814 + AegisName: "EmptyPlate" + Name: "Empty Plate" + Type: "IT_ETC" + Buy: 50000 + Sell: 5000 + Weight: 80 + Slots: 0 +}, +{ + Id: 815 AegisName: "WaxChunk" Name: "Wax Chunk" + Weight: 100 +}, +{ + Id: 816 + AegisName: "Codfish" + Name: "Codfish" + Type: "IT_ETC" + Buy: 1900 + Sell: 180 + Weight: 300 +}, +{ + Id: 817 + AegisName: "Tuna" + Name: "Tuna" + Type: "IT_ETC" + Buy: 2100 + Sell: 200 + Weight: 270 +}, +{ + Id: 818 + AegisName: "Trout" + Name: "Trout" + Type: "IT_ETC" + Buy: 2900 + Sell: 280 + Weight: 150 +}, +{ + Id: 819 + AegisName: "Salmon" + Name: "Salmon" + Type: "IT_ETC" + Buy: 3500 + Sell: 320 + Weight: 210 +}, +{ + Id: 820 + AegisName: "AcornFlour" + Name: "Acorn Flour" + Type: "IT_ETC" + Buy: 900 + Sell: 120 + Weight: 110 }, // Necklaces { diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index 9fac776e..015cbf3f 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -875,6 +875,7 @@ mob_db: ( DamageMotion: 480 Drops: { PumpkinJuice: 5000 + PumpkinSeeds: 2000 } }, { @@ -916,6 +917,8 @@ mob_db: ( DamageMotion: 270 Drops: { Pumpkin: 10000 + PumpkinJuice: 5000 + PumpkinSeeds: 2000 } }, { @@ -990,7 +993,7 @@ mob_db: ( DamageMotion: 480 Drops: { FluffyFur: 3500 - LettuceLeaf: 2000 + LettuceLeaf: 1500 Moss: 800 } }, @@ -1031,7 +1034,10 @@ mob_db: ( AttackMotion: 1400 DamageMotion: 1200 Drops: { - Pearl: 10 + MoubooMilk: 1750 + MoubooSteak: 1000 + GrassSeeds: 100 + FlowerSeeds: 10 } }, { @@ -1072,10 +1078,11 @@ mob_db: ( AttackMotion: 864 DamageMotion: 1026 Drops: { - MaggotSlime: 800 - Moss: 400 + MaggotSlime: 1000 HalfEggshell: 200 TreasureKey: 100 + EmptyBottle: 10 + Pearl: 1 } }, { @@ -1156,8 +1163,10 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { - MaggotSlime: 500 - BugLeg: 600 + MaggotSlime: 800 + BugLeg: 500 + RoastedMaggot: 100 + MaggotSlimePotion: 2 } }, { @@ -1199,7 +1208,10 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { - MaggotSlime: 500 + MaggotSlime: 1200 + BugLeg: 750 + RoastedMaggot: 200 + MaggotSlimePotion: 5 } }, { @@ -1240,7 +1252,10 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { - MaggotSlime: 500 + MaggotSlime: 1000 + BugLeg: 800 + RoastedMaggot: 250 + MaggotSlimePotion: 10 } }, { @@ -1283,6 +1298,10 @@ mob_db: ( AttackMotion: 1000 DamageMotion: 800 Drops: { + BugLeg: 1000 + WaxChunk: 500 + ChocolateBar: 200 + Honey: 100 } }, { @@ -1323,7 +1342,10 @@ mob_db: ( AttackMotion: 600 DamageMotion: 200 Drops: { - PinkAntennae: 5000 + PinkAntennae: 3000 + BugLeg: 2000 + Blueberries: 1000 + BlueberryCake: 10 } }, { @@ -1364,7 +1386,9 @@ mob_db: ( AttackMotion: 800 DamageMotion: 600 Drops: { - RawLog: 5000 + Acorn: 3500 + RawLog: 2500 + Moss: 1000 } }, { @@ -1526,7 +1550,10 @@ mob_db: ( AttackMotion: 500 DamageMotion: 700 Drops: { - BugLeg: 10000 + BugLeg: 7500 + MaggotSlime: 1000 + MaggotSlimePotion: 250 + Pearl: 10 } }, { @@ -1763,9 +1790,10 @@ mob_db: ( AttackMotion: 750 DamageMotion: 600 Drops: { - Acorn: 2500 + Acorn: 3500 CobaltHerb: 1000 MauveHerb: 1000 + SquirrelMeat: 750 } }, { @@ -1805,6 +1833,9 @@ mob_db: ( AttackMotion: 400 DamageMotion: 380 Drops: { + SnakeSkin: 500 + SnakeTongue: 500 + SnakeScales: 10 } }, { @@ -1844,6 +1875,9 @@ mob_db: ( AttackMotion: 800 DamageMotion: 500 Drops: { + RightScorpionClaw: 1000 + LeftScorpionClaw: 1000 + ScorpionStinger: 500 } }, { @@ -1883,6 +1917,9 @@ mob_db: ( AttackMotion: 500 DamageMotion: 300 Drops: { + BugLeg: 2500 + TreasureKey: 500 + Lockpicks: 100 } }, { @@ -2114,6 +2151,7 @@ mob_db: ( Drops: { HardSpike: 1000 SmallMushroom: 800 + Fungus: 50 } }, { @@ -2153,7 +2191,9 @@ mob_db: ( AttackMotion: 700 DamageMotion: 600 Drops: { - HardSpike: 2000 + MushroomSpores: 2000 + SmallMushroom: 1000 + Curshroom: 330 } }, { @@ -2430,7 +2470,9 @@ mob_db: ( AttackMotion: 1 DamageMotion: 1 Drops: { - BugLeg: 5000 + WaxChunk: 7500 + Honey: 5000 + RoastedMaggot: 1000 } }, { @@ -2473,6 +2515,10 @@ mob_db: ( AttackMotion: 750 DamageMotion: 750 Drops: { + BugLeg: 2000 + WaxChunk: 1000 + Honey: 200 + ChocolateBar: 100 } }, { @@ -2666,10 +2712,10 @@ mob_db: ( CoinBag: 500 BottleOfWater: 250 TreasureKey: 200 - Dagger: 90 + Dagger: 10 + BanditBoots: 2 BanditTrousers: 1 BanditHood: 1 - BanditBoots: 2 } }, { @@ -2802,6 +2848,11 @@ mob_db: ( AttackDelay: 870 AttackMotion: 672 DamageMotion: 400 + Drops: { + SmallHealingPotion: 1000 + CoinBag: 500 + ShortSword: 1 + } }, { Id: 1067 @@ -2838,6 +2889,11 @@ mob_db: ( AttackDelay: 2170 AttackMotion: 954 DamageMotion: 620 + Drops: { + CoinBag: 500 + IronPotion: 100 + Halberd: 1 + } }, { Id: 1068 @@ -2874,6 +2930,13 @@ mob_db: ( AttackDelay: 870 AttackMotion: 454 DamageMotion: 420 + Drops: { + CoinBag: 1500 + TreasureMap: 200 + ConcentrationPotion: 250 + IronLegionArmor: 1 + LongSword: 1 + } }, { Id: 1069 @@ -3070,7 +3133,7 @@ mob_db: ( AttackMotion: 1400 DamageMotion: 1200 Drops: { - Pearl: 10 + Pearl: 100 MagicFeather: 10 CopperNecklace: 1 } @@ -3152,6 +3215,7 @@ mob_db: ( AttackMotion: 764 DamageMotion: 826 Drops: { + RedApple: 1000 MaggotSlime: 800 Moss: 400 RubyShard: 200 @@ -3195,6 +3259,9 @@ mob_db: ( AttackMotion: 750 DamageMotion: 1120 Drops: { + SnakeSkin: 750 + SnakeTongue: 750 + SnakeScales: 20 } }, { @@ -3235,8 +3302,7 @@ mob_db: ( BugLeg: 3500 Carrot: 1000 Moss: 900 - CommonCarp: 100 - Pearl: 1 + ConcPotion: 10 } }, { @@ -3276,6 +3342,9 @@ mob_db: ( AttackMotion: 750 DamageMotion: 1120 Drops: { + SnakeSkin: 1000 + SnakeTongue: 700 + SnakeScales: 33 } }, { @@ -3315,6 +3384,9 @@ mob_db: ( AttackMotion: 800 DamageMotion: 500 Drops: { + RightScorpionClaw: 1500 + LeftScorpionClaw: 1500 + ScorpionStinger: 750 } }, { @@ -3353,6 +3425,10 @@ mob_db: ( DamageMotion: 826 Drops: { MaggotSlime: 800 + ChocolateBar: 100 + TreasureKey: 50 + TreasureMap: 10 + DeathPotion: 1 } }, { @@ -3390,6 +3466,8 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { + PileOfAsh: 1000 + Coal: 750 BugLeg: 400 } }, @@ -3428,6 +3506,12 @@ mob_db: ( AttackDelay: 870 AttackMotion: 672 DamageMotion: 400 + Drops: { + CoinBag: 1000 + Bread: 500 + MediumHealingPotion: 250 + Dagger: 20 + } }, { Id: 1082 @@ -3464,6 +3548,13 @@ mob_db: ( AttackDelay: 2170 AttackMotion: 954 DamageMotion: 620 + Drops: { + IronArrow: 5000 + IronArrow: 2500 + CoinBag: 1000 + MediumHealingPotion: 250 + ShortBow: 5 + } }, { Id: 1083 @@ -3500,6 +3591,13 @@ mob_db: ( AttackDelay: 870 AttackMotion: 454 DamageMotion: 420 + Drops: { + CoinBag: 2500 + TreasureMap: 1000 + Bread: 1000 + MediumManaPotion: 100 + Axe: 5 + } }, { Id: 1084 @@ -3536,6 +3634,10 @@ mob_db: ( AttackDelay: 1070 AttackMotion: 570 DamageMotion: 450 + Drops: { + Bone: 1500 + Skull: 750 + } }, { Id: 1085 @@ -3572,7 +3674,10 @@ mob_db: ( AttackMotion: 452 DamaeMotion: 480 Drops: { + HardSpike: 5000 BugLeg: 3500 + BottleOfWater: 1000 + GoldNuggets: 1 } }, { @@ -3612,8 +3717,10 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { - MaggotSlime: 500 + Moss: 1000 + MaggotSlime: 1000 BugLeg: 600 + Blueberries: 500 } }, { @@ -3653,8 +3760,12 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { - MaggotSlime: 500 - BugLeg: 600 + Moss: 1500 + MaggotSlime: 1000 + BugLeg: 900 + Blueberries: 700 + MaggotSlimePotion: 50 + SmallManaPotion: 10 } }, { @@ -3694,8 +3805,9 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { - MaggotSlime: 500 BugLeg: 600 + MaggotSlime: 500 + Blueberries: 500 } }, { @@ -3736,6 +3848,11 @@ mob_db: ( AttackMotion: 692 DamageMotion: 652 Drops: { + PumpkinSeeds: 3300 + PumpkinJuice: 2000 + Curshroom: 660 + Beer: 500 + MediumManaPotion: 100 } }, { @@ -3773,7 +3890,10 @@ mob_db: ( AttackMotion: 572 DamageMotion: 380 Drops: { + Aquada: 1000 BugLeg: 400 + SapphireShard: 100 + CrudeSapphire: 10 } }, { @@ -3812,6 +3932,13 @@ mob_db: ( AttackDelay: 870 AttackMotion: 454 DamageMotion: 420 + Drops: { + RoastedAcorn: 2500 + CherryCake: 1000 + LargeHealingPotion: 100 + CrudeEmerald: 10 + CrudeAmethyst: 5 + } }, { Id: 1094 @@ -3848,7 +3975,11 @@ mob_db: ( AttackMotion: 572 DamageMotion: 380 Drops: { - BugLeg: 400 + RedApple: 1000 + BlueCoral: 750 + BugLeg: 500 + Donut: 100 + Pearl: 50 } }, { @@ -3889,6 +4020,11 @@ mob_db: ( AttackMotion: 352 DamageMotion: 552 Drops: { + Runestones: 250 + GoldNuggets: 100 + Gems: 10 + Gems: 5 + Gems: 1 } }, { @@ -3926,7 +4062,10 @@ mob_db: ( AttackMotion: 764 DamageMotion: 826 Drops: { - MaggotSlime: 800 + MaggotSlime: 2000 + ChocolateBar: 1000 + IronOre: 500 + RotoniumOre: 3 } }, { @@ -3966,7 +4105,10 @@ mob_db: ( AttackMotion: 672 DamageMotion: 200 Drops: { + MaggotSlime: 3000 + TreasureKey: 100 Emerald: 36 + ZealiteOre: 5 } }, { @@ -4006,7 +4148,11 @@ mob_db: ( AttackMotion: 672 DamageMotion: 200 Drops: { - ChocolateBar: 6000 + MaggotSlime: 3500 + ChocolateBar: 2000 + CrudeGems: 50 + RotoniumOre: 5 + TerraniteOre: 1 } }, { @@ -4046,6 +4192,9 @@ mob_db: ( AttackMotion: 672 DamageMotion: 200 Drops: { + MaggotSlime: 2500 + TopazShard: 800 + GoldNuggets: 20 Topaz: 22 } }, @@ -4087,6 +4236,10 @@ mob_db: ( AttackMotion: 452 DamageMotion: 652 Drops: { + PoisonedArrow: 2000 + PoisonedArrow: 1000 + PoisonedArrow: 500 + Skull: 500 } }, { @@ -4126,6 +4279,8 @@ mob_db: ( AttackMotion: 550 DamageMotion: 450 Drops: { + TreasureKey: 100 + Runestones: 10 } }, { @@ -4168,6 +4323,8 @@ mob_db: ( AttackMotion: 550 DamageMotion: 450 Drops: { + TreasureKey: 100 + Runestones: 10 } }, { @@ -4252,6 +4409,8 @@ mob_db: ( AttackMotion: 800 DamageMotion: 500 Drops: { + RightScorpionClaw: 2000 + LeftScorpionClaw: 2000 BlackScorpionStinger: 750 } }, @@ -4292,8 +4451,9 @@ mob_db: ( DamageMotion: 1026 Drops: { MaggotSlime: 800 - HalfEggshell: 200 Moss: 400 + BasicCottonDyes: 10 + ExtendedSilkDyes: 5 } }, { @@ -4336,6 +4496,12 @@ mob_db: ( AttackMotion: 550 DamageMotion: 450 Drops: { + BugLeg: 7500 + MaggotSlime: 5000 + SilverOre: 1000 + GoldOre: 500 + PlatinumOre: 100 + CrudeGems: 50 } }, { @@ -4413,6 +4579,12 @@ mob_db: ( AttackMotion: 1400 DamageMotion: 1200 Drops: { + Tentacles: 1000 + CommonCarp: 750 + GrassCarp: 500 + Trout: 250 + CopperOre: 100 + MagicFeather: 50 Pearl: 10 } }, @@ -4456,7 +4628,11 @@ mob_db: ( DamageMotion: 480 Drops: { BugLeg: 4000 + RightScorpionClaw: 2500 + LeftScorpionClaw: 2500 GoldenScorpionStinger: 1500 + GoldOre: 50 + GoldNuggets: 10 } }, { @@ -4493,6 +4669,11 @@ mob_db: ( AttackMotion: 750 DamageMotion: 550 Drops: { + CobaltHerb: 1000 + AlizarinHerb: 1000 + GambogeHerb: 1000 + MauveHerb: 1000 + FlowerSeeds: 500 } }, { @@ -4532,8 +4713,6 @@ mob_db: ( AttackDelay: 800 AttackMotion: 550 DamageMotion: 620 - Drops: { - } }, { Id: 1113 @@ -4571,6 +4750,11 @@ mob_db: ( AttackDelay: 870 AttackMotion: 454 DamageMotion: 420 + Drops: { + Coal: 1000 + TerraniteOre: 100 + CrudeGems: 50 + } }, { Id: 1114 @@ -4607,6 +4791,15 @@ mob_db: ( AttackDelay: 1070 AttackMotion: 654 DamageMotion: 420 + Drops: { + DiamondShard: 500 + RubyShard: 450 + TopazShard: 400 + EmeraldShard: 350 + AmethystShard: 300 + SapphireShard: 250 + CrudeGems: 100 + } }, { Id: 1115 @@ -4646,6 +4839,7 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { + PileOfAsh: 1000 } }, { @@ -4686,6 +4880,8 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { + SeaDrops: 1000 + Aquada: 500 } }, { @@ -4725,6 +4921,9 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { + MoubooSteak: 500 + WolvernPelt: 330 + ToothNecklace: 2 } }, { @@ -4763,6 +4962,12 @@ mob_db: ( AttackDelay: 1170 AttackMotion: 754 DamageMotion: 520 + Drops: { + CottonCloth: 2000 + LeatherPatch: 1500 + Bone: 1000 + Skull: 500 + } }, { Id: 1119 @@ -4799,6 +5004,9 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { + BugLeg: 2500 + MaggotSlime: 1000 + ZealiteOre: 5 } }, { @@ -4841,6 +5049,11 @@ mob_db: ( AttackMotion: 450 DamageMotion: 850 Drops: { + Blueberries: 1000 + IronOre: 250 + MediumManaPotion: 100 + MagicFeather: 50 + PlatinumIngot: 10 } }, { @@ -4883,6 +5096,13 @@ mob_db: ( AttackMotion: 2000 DamageMotion: 2000 Drops: { + Coal: 1000 + IronOre: 500 + Runestones: 200 + Runestones: 100 + Runestones: 50 + RotoniumOre: 10 + ZealiteOre: 2 } }, { diff --git a/npc/items/recipes.txt b/npc/items/recipes.txt index 5ffaab41..c624a357 100644 --- a/npc/items/recipes.txt +++ b/npc/items/recipes.txt @@ -117,6 +117,29 @@ function read_cooking { PioulegSandwich, MananaSandwich); + mes ""; + mes ".:: " + l("Stew") + " ::."; + mes ""; + + showRecipe(SailorStew, + SquirrelStew, + MoubooStew); + + mes ""; + mes ".:: " + l("Plates") + " ::."; + mes ""; + + showRecipe(SeafoodPlate, + BarbecuePlate, + VeggiePlate); + + mes ""; + mes ".:: " + l("Desserts") + " ::."; + mes ""; + + showRecipe(Donut, + BlueberryCake, + CarrotCake); return; } |