1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
bool LoadAllItems(){
//First overload
cItemMgr::CreateItem("Longsword", RIGHTLEFT, 3.0, 10, 9, 0, 0, 'C', 'C', 'n', 'n', 'n', 'n', 112, 0, 0, 0, 0);
cItemMgr::CreateItem("Shortsword", RIGHTLEFT, 2.0, 7, 10, 0, 0, 'C', 'C', 'n', 'n', 'n', 'n', 100, 0, 0, 0, 0);
//Second overload
cItemMgr::CreateItem("Life Ring", RING, 0.2, *cring::EffLifeRing);
cItemMgr::CreateItem("Cloranthy Ring", RING, 0.2, *cring::EffClorRing);
//Third overload
cItemMgr::CreateItem("Alonne Knight Helm", ARMORHEAD, 4.6, 'C', 9, 40, 47, 52, 49, 9, 15, 7, 9, 5, 10, 0, 0);
cItemMgr::CreateItem("Alonne Knight Chest", ARMORCHEST, 14.2, 'A', 34, 152, 146, 161, 152, 27, 46, 22, 27, 14, 32, 0, 0);
cItemMgr::CreateItem("Alonne Knight Gauntlets", ARMORHAND, 6.7, 'C', 12, 72, 69, 76, 72, 13, 21, 10, 13, 7, 15, 0, 0);
cItemMgr::CreateItem("Alonne Knight Leggings", ARMORLEG, 9.8, 'C', 20, 105, 100, 111, 105, 19, 31, 15, 19, 10, 22, 0, 0);
cItemMgr::CreateItem("Alva Helm", ARMORHEAD, 3.7, 'C', 6, 38, 36, 39, 37, 10, 11, 8, 11, 11, 15, 0, 0);
cItemMgr::CreateItem("Alva Armor", ARMORCHEST, 8.8, 'A', 15, 89, 85, 92, 88, 25, 27, 19, 26, 26, 35, 0, 0);
cItemMgr::CreateItem("Alva Gauntlets", ARMORHAND, 2.9, 'C', 4, 29, 28, 30, 29, 8, 9, 6, 9, 9, 11, 0, 0);
cItemMgr::CreateItem("Alva Leggings", ARMORLEG, 5.2, 'C', 9, 53, 50, 55, 52, 15, 16, 11, 16, 16, 20, 0, 0);
return true;
}
|