
- Added 'ID' as identifier/index for produce_db and skill_changematerial_db to avoid 'rewriting' product result with different materials. As we can see there 'Starsand_Of_Witch' can be produced by (1) 10 Insect Feeler + 15 Blue Porcelain or (2) 100 Moth Dust + 100 Scell. - Map-server crashed issue while @reloadskilldb. Some counters aren't zeroed on skill_readdb() makes array overflow. (bugreport:9241, bugreport:9243) - Allowing import file to remove original entry by put certain value. See the changed db files for more details. - Relying to skill_spellbook_db for listing available book as spell book. For Warlock skill Reading Spellbook (WL_READING_SB). Signed-off-by: Cydh Ramdh <house.bad@gmail.com>
290 lines
9.1 KiB
Plaintext
290 lines
9.1 KiB
Plaintext
// Arrow Crafting Database
|
|
//
|
|
// Structure of Database:
|
|
// SourceID,MakeID1,MakeAmount1,...,MakeID5,MakeAmount5
|
|
//
|
|
// 01. SourceID ID of the item, that is consumed by Arrow Crafting.
|
|
// 02. MakeID ID of the item received from Arrow Crafting.
|
|
// 03. MakeAmount Amount of MakeID item received from Arrow Crafting.
|
|
// ...
|
|
//
|
|
// NOTE:
|
|
// - Up to MAX_ARROW_RESULT (typically 5) ID/Amount pairs can be specified.
|
|
// - To remove entry by importing, put 0 on 'MakeID'
|
|
|
|
// Old Blue Box --> 50 Sharp Arrows, 50 Sleep Arrows
|
|
603,1764,50,1768,50
|
|
// Dead Branch --> 40 Mute Arrows
|
|
604,1769,40
|
|
// Amulet --> 40 Cursed Arrows
|
|
609,1761,40
|
|
// Empty Bottle --> 2 Iron Arrows
|
|
713,1770,2
|
|
// Emperium --> 600 Immaterial Arrows, 600 Mute Arrows, 600 Oridecon Arrows
|
|
714,1757,600,1769,600,1765,600
|
|
// Yellow Gemstone --> 30 Stone Arrows, 1 Sleep Arrow
|
|
715,1756,30,1768,1
|
|
// Red Gemstone --> 10 Rusty Arrows, 1 Poison Arrow, 1 Cursed Arrow
|
|
716,1762,10,1763,1,1761,1
|
|
// Blue Gemstone --> 30 Crystal Arrows, 1 Frozen Arrow
|
|
717,1754,30,1759,1
|
|
// Cursed Ruby --> 50 Cursed Arrows, 10 Sleep Arrows
|
|
724,1761,50,1768,10
|
|
// Cracked Diamond --> 50 Sharp Arrows
|
|
733,1764,50
|
|
// Rough Oridecon --> 50 Oridecon Arrows
|
|
756,1765,50
|
|
// Rough Elunium --> 200 Steel Arrows, 5 Stun Arrows
|
|
757,1753,200,1758,5
|
|
// Tree Root --> 7 Arrows
|
|
902,1750,7
|
|
// Scorpion Tail --> 3 Rusty Arrows
|
|
904,1762,3
|
|
// Jellopy --> 4 Arrows
|
|
909,1750,4
|
|
// Garlet --> 12 Iron Arrows
|
|
910,1770,12
|
|
// Scell --> 8 Steel Arrows
|
|
911,1753,8
|
|
// Zargon --> 50 Silver Arrows
|
|
912,1751,50
|
|
// Tooth of Bat --> 1 Shadow Arrow
|
|
913,1767,1
|
|
// Wolf Claw --> 15 Iron Arrows
|
|
920,1770,15
|
|
// Orc's Fang --> 30 Iron Arrows, 5 Steel Arrows, 10 Stone Arrows
|
|
922,1770,30,1753,5,1756,10
|
|
// Evil Horn --> 20 Shadow Arrows, 10 Flash Arrows, 5 Stun Arrows
|
|
923,1767,20,1760,10,1758,5
|
|
// Venom Canine --> 1 Poison Arrow
|
|
937,1763,1
|
|
// Bee Sting --> 1 Rusty Arrow
|
|
939,1762,1
|
|
// Horn --> 35 Iron Arrows
|
|
947,1770,35
|
|
// Cactus Needle --> 50 Arrows
|
|
952,1750,50
|
|
// Gill --> 80 Iron Arrows, 150 Crystal Arrows
|
|
956,1770,80,1754,150
|
|
// Decayed Nail --> 1 Rusty Arrow, 1 Shadow Arrow
|
|
957,1762,1,1767,1
|
|
// Horrendous Mouth --> 5 Shadow Arrows
|
|
958,1767,5
|
|
// Stinky Scale --> 1 Poison Arrow
|
|
959,1763,1
|
|
// Heroic Emblem --> 1 Oridecon Arrow, 5 Stun Arrows
|
|
968,1765,1,1758,5
|
|
// Gold --> 50 Flash Arrows, 50 Oridecon Arrows
|
|
969,1760,50,1765,50
|
|
// Oridecon --> 250 Oridecon Arrows
|
|
984,1765,250
|
|
// Elunium --> 1000 Steel Arrows, 50 Stun Arrows
|
|
985,1753,1000,1758,50
|
|
// Red Blood --> 600 Fire Arrows
|
|
990,1752,600
|
|
// Crystal Blue --> 150 Crystal Arrows
|
|
991,1754,150
|
|
// Wind of Verdure --> 150 Arrows of Wind
|
|
992,1755,150
|
|
// Green Live --> 150 Stone Arrows
|
|
993,1756,150
|
|
// Flame Heart --> 1800 Fire Arrows, 5 Mute Arrows
|
|
994,1752,1800,1769,5
|
|
// Mystic Frozen --> 450 Crystal Arrows, 5 Frozen Arrows
|
|
995,1754,450,1759,5
|
|
// Rough Wind --> 450 Arrows of Wind, 5 Sleep Arrows
|
|
996,1755,450,1768,5
|
|
// Great Nature --> 450 Stone Arrows, 5 Flash Arrows
|
|
997,1756,450,1760,5
|
|
// Iron --> 100 Iron Arrows
|
|
998,1770,100
|
|
// Steel --> 100 Steel Arrows
|
|
999,1753,100
|
|
// Star Crumb --> 30 Flash Arrows
|
|
1000,1760,30
|
|
// Star Dust --> 10 Flash Arrows
|
|
1001,1760,10
|
|
// Iron Ore --> 50 Iron Arrows
|
|
1002,1770,50
|
|
// Coal --> 8 Shadow Arrows
|
|
1003,1767,8
|
|
// Phracon --> 50 Iron Arrows
|
|
1010,1770,50
|
|
// Emveretarcon --> 200 Iron Arrows, 40 Silver Arrows
|
|
1011,1770,200,1751,40
|
|
// Mole Claw --> 50 Iron Arrows, 60 Stone Arrows
|
|
1018,1770,50,1756,60
|
|
// Trunk --> 40 Arrows
|
|
1019,1750,40
|
|
// Dokebi Horn --> 40 Iron Arrows, 2 Shadow Arrows
|
|
1021,1770,40,1767,2
|
|
// Porcupine Quill --> 70 Arrows, 30 Stone Arrows
|
|
1027,1750,70,1756,30
|
|
// Mantis Scythe --> 1 Sharp Arrow
|
|
1031,1764,1
|
|
// Dragon Canine --> 1 Oridecon Arrow, 50 Iron Arrows
|
|
1035,1765,1,1770,50
|
|
// Little Evil Horn --> 2 Cursed Arrows, 50 Iron Arrows
|
|
1038,1761,2,1770,50
|
|
// Lantern --> 80 Iron Arrows
|
|
1041,1770,80
|
|
// Orc Claw --> 10 Steel Arrows
|
|
1043,1753,10
|
|
// Zenorc's Fang --> 5 Rusty Arrows
|
|
1044,1762,5
|
|
// Ancient Tooth --> 20 Steel Arrows, 300 Crystal Arrows
|
|
1053,1753,20,1754,300
|
|
// Fang --> 2 Sharp Arrows, 40 Silver Arrows
|
|
1063,1764,2,1751,40
|
|
// Reins --> 100 Iron Arrows, 50 Steel Arrows
|
|
1064,1770,100,1753,50
|
|
// Fine-grained Trunk --> 20 Arrows
|
|
1066,1750,20
|
|
// Solid Trunk --> 20 Arrows
|
|
1067,1750,20
|
|
// Barren Trunk --> 20 Arrows
|
|
1068,1750,20
|
|
// Clock Hand --> 5 Sleep Arrows, 100 Arrows
|
|
1095,1768,5,1750,100
|
|
// Manacles --> 50 Steel Arrows
|
|
1098,1753,50
|
|
// Unicorn Horn --> 1000 Silver Arrows
|
|
2257,1751,1000
|
|
// Opera Masque --> 200 Steel Arrows, 40 Mute Arrows
|
|
2281,1753,200,1769,40
|
|
// Mr. Scream --> 200 Sharp Arrows, 300 Steel Arrows
|
|
2288,1764,200,1753,300
|
|
// Welding Mask --> 200 Steel Arrows, 40 Stun Arrows
|
|
2292,1753,200,1758,40
|
|
// Glittering Jacket --> 1000 Flash Arrows
|
|
2319,1760,1000
|
|
// Wooden Mail --> 700 Arrows, 500 Iron Arrows
|
|
2328,1750,700,1770,500
|
|
// Wooden Mail (Slotted) --> 1000 Arrows, 700 Iron Arrows
|
|
2329,1750,1000,1770,700
|
|
// Silver Robe --> 700 Silver Arrows
|
|
2332,1751,700
|
|
// Silver Robe (Slotted) --> 1000 Silver Arrows, 10 Immaterial Arrows
|
|
2333,1751,1000,1757,10
|
|
// Shackles --> 700 Iron Arrows, 50 Steel Arrows
|
|
2408,1770,700,1753,50
|
|
// Matyr's Leash --> 150 Arrows of Wind, 100 Steel Arrows, 10 Sharp Arrows
|
|
2618,1755,150,1753,100,1764,10
|
|
// Fin Helm --> 600 Crystal Arrows, 200 Steel Arrows
|
|
5014,1754,600,1753,200
|
|
// Ogre Tooth --> 30 Steel Arrows, 5 Rusty Arrows
|
|
7002,1753,30,1762,5
|
|
// Stiff Horn --> 2 Stun Arrows
|
|
7008,1758,2
|
|
// Tail of Steel Scorpion --> 250 Steel Arrows, 1 Poison Arrow
|
|
7010,1753,250,1763,1
|
|
// Young Twig --> 1000 Mute Arrows
|
|
7018,1769,1000
|
|
// Loki's Whispers --> 1000 Shadow Arrows
|
|
7019,1767,1000
|
|
// Mother's Nightmare --> 1000 Cursed Arrows
|
|
7020,1761,1000
|
|
// Foolishness of the Blind --> 200 Flash Arrows
|
|
7021,1760,200
|
|
// Old Hilt --> 1000 Oridecon Arrows
|
|
7022,1765,1000
|
|
// Blade of Darkness --> 600 Sharp Arrows, 200 Shadow Arrows
|
|
7023,1764,600,1767,200
|
|
// Bloody Edge --> 600 Sharp Arrows, 200 Cursed Arrows
|
|
7024,1764,600,1761,200
|
|
// Lucifer's Lament --> 800 Stun Arrows, 400 Mute Arrows, 800 Sleep Arrows
|
|
7025,1758,800,1769,400,1768,800
|
|
// Key of the Clock Tower --> 50 Oridecon Arrows
|
|
7026,1765,50
|
|
// Key of the Underground --> 100 Shadow Arrows
|
|
7027,1767,100
|
|
// Matchstick --> 3000 Fire Arrows
|
|
7035,1752,3000
|
|
// Fang of Garm --> 300 Crystal Arrows
|
|
7036,1754,300
|
|
|
|
//New Ingredients
|
|
|
|
// Ice Cubic --> 100 Crystal Arrows
|
|
7066,1754,100
|
|
// Stone Fragment --> 50 Stone Arrows, 30 Stun Arrows
|
|
7067,1756,50,1758,30
|
|
// Burnt Tree --> 250 Fire Arrows
|
|
7068,1752,250
|
|
// Destroyed Armor --> 150 Steel Arrows
|
|
7069,1753,150
|
|
// Burning Heart --> 150 Fire Arrows
|
|
7097,1752,150
|
|
// Live Coal --> 100 Fire Arrows
|
|
7098,1752,100
|
|
// Sharp Leaf --> 30 Sharp Arrows
|
|
7100,1764,30
|
|
// Piece of Shield --> 100 Steel Arrows, 100 Oridecon Arrows, 300 Immaterial Arrows
|
|
7108,1753,100,1765,100,1757,300
|
|
// Shining Spear Blade --> 100 Oridecon Arrows
|
|
7109,1765,100
|
|
// Burning Horseshoe --> 100 Steel Arrows
|
|
7120,1753,100
|
|
// Dragon Skin --> 10 Steel Arrows, 50 Cursed Arrows, 50 Mute Arrows
|
|
7123,1753,10,1761,50,1769,50
|
|
// Piece of Bamboo --> 100 Arrows
|
|
7150,1750,100
|
|
// Poisonous Toad Skin --> 20 Poison Arrows
|
|
7155,1763,20
|
|
// Hard Feeler --> 20 Sharp Arrows
|
|
7163,1764,20
|
|
// Solid Peach --> 30 Stun Arrows
|
|
7164,1758,30
|
|
// Leopard Claw --> 10 Sharp Arrows
|
|
7172,1764,10
|
|
// Armor Piece of Dullahan --> 150 Shadow Arrows
|
|
7210,1767,150
|
|
// Tangled Chains --> 50 Steel Arrows, 50 Shadow Arrows
|
|
7221,1753,50,1767,50
|
|
// Cat's Eye --> 200 Arrows of Wind
|
|
7263,1755,200
|
|
// Dark Crystal Fragment --> 30 Cursed Arrows, 50 Shadow Arrows
|
|
7315,1761,30,1767,50
|
|
// Insect Leg --> 10 Sharp Arrows, 50 Poison Arrows
|
|
7316,1764,10,1763,50
|
|
// Old Pick --> 100 Rusty Arrows, 50 Steel Arrows
|
|
7318,1762,100,1753,50
|
|
// Used Iron Plate --> 100 Rusty Arrows, 100 Steel Arrows
|
|
7319,1762,100,1753,100
|
|
// Crystal Fragment --> 10 Flash Arrows, 30 Sleep Arrows
|
|
7321,1760,10,1768,30
|
|
// Battered Kettle --> 50 Steel Arrows
|
|
7323,1753,50
|
|
// Will of the Darkness --> 30 Cursed Arrows, 30 Poison Arrows, 50 Shadow Arrows
|
|
7340,1761,30,1763,30,1767,50
|
|
// Golden Ornament --> 200 Silver Arrows, 300 Holy Arrows
|
|
7435,1751,200,1772,300
|
|
// Cursed Seal --> 50 Cursed Arrows, 50 Mute Arrows
|
|
7442,1761,50,1769,50
|
|
// Green Bijou --> 100 Stone Arrows, 80 Poison Arrows
|
|
7445,1756,100,1763,80
|
|
// Blue Bijou --> 50 Arrows of Wind, 50 Crystal Arrows, 80 Frozen Arrows
|
|
7446,1755,50,1754,50,1759,80
|
|
// Red Bijou --> 100 Fire Arrows, 80 Flash Arrows
|
|
7447,1752,100,1760,80
|
|
// Yellow Bijou --> 50 Silver Arrows, 50 Immaterial Arrows, 80 Sleep Arrows
|
|
7448,1751,50,1757,50,1768,80
|
|
// Skeletal Armor Piece --> 500 Immaterial Arrows, 200 Shadow Arrows, 100 Oridecon Arrows
|
|
7450,1757,500,1767,200,1765,100
|
|
// Fire Dragon Scale --> 300 Fire Arrows, 300 Stun Arrows
|
|
7451,1752,300,1758,300
|
|
// Valhalla's Flower --> 600 Immaterial Arrows, 600 Holy Arrows, 600 Sharp Arrows
|
|
7510,1757,600,1772,600,1764,600
|
|
// Darkness Rune --> 300 Shadow Arrows, 150 Flash Arrows
|
|
7511,1767,300,1760,150
|
|
// Ice Heart --> 50 Crystal Arrows, 50 Frozen Arrows
|
|
7561,1754,50,1759,50
|
|
// Ice Scale --> 150 Crystal Arrows, 400 Frozen Arrows, 200 Mute Arrows
|
|
7562,1754,150,1759,400,1769,200
|
|
// Will of Red Darkness --> 200 Cursed Arrows, 200 Poison Arrows, 100 Shadow Arrows
|
|
7566,1761,200,1763,200,1767,100
|
|
// Clattering Skull --> 50 Shadow Arrows, 50 Cursed Arrows
|
|
7752,1767,50,1761,50
|
|
// Broken Farm Tools --> 50 Rusty Arrows, 10 Iron Arrows, 20 Cursed Arrows
|
|
7753,1762,50,1770,10,1761,20
|