mirror of
https://github.com/minetest/minetest.git
synced 2024-11-22 23:53:44 +01:00
Added Iron Apple which heals 4 Hearts
This commit is contained in:
parent
785a2fd23a
commit
88dc8c694e
BIN
data/apple_iron.png
Normal file
BIN
data/apple_iron.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 207 B |
@ -428,6 +428,20 @@ InventoryItem *craft_get_result(InventoryItem **items)
|
|||||||
return new MaterialItem(CONTENT_LADDER, 1);
|
return new MaterialItem(CONTENT_LADDER, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Iron Apple
|
||||||
|
{
|
||||||
|
ItemSpec specs[9];
|
||||||
|
specs[1] = ItemSpec(ITEM_CRAFT, "steel_ingot");
|
||||||
|
specs[3] = ItemSpec(ITEM_CRAFT, "steel_ingot");
|
||||||
|
specs[4] = ItemSpec(ITEM_CRAFT, "apple");
|
||||||
|
specs[5] = ItemSpec(ITEM_CRAFT, "steel_ingot");
|
||||||
|
specs[7] = ItemSpec(ITEM_CRAFT, "steel_ingot");
|
||||||
|
if(checkItemCombination(items, specs))
|
||||||
|
{
|
||||||
|
return new CraftItem("apple_iron", 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -73,6 +73,8 @@ std::string item_craft_get_image_name(const std::string &subname)
|
|||||||
return "firefly.png";
|
return "firefly.png";
|
||||||
else if(subname == "apple")
|
else if(subname == "apple")
|
||||||
return "apple.png";
|
return "apple.png";
|
||||||
|
else if(subname == "apple_iron")
|
||||||
|
return "apple_iron.png";
|
||||||
else
|
else
|
||||||
return "cloud.png"; // just something
|
return "cloud.png"; // just something
|
||||||
}
|
}
|
||||||
@ -130,6 +132,8 @@ bool item_craft_is_eatable(const std::string &subname)
|
|||||||
return true;
|
return true;
|
||||||
else if(subname == "apple")
|
else if(subname == "apple")
|
||||||
return true;
|
return true;
|
||||||
|
else if(subname == "apple_iron")
|
||||||
|
return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -139,6 +143,8 @@ s16 item_craft_eat_hp_change(const std::string &subname)
|
|||||||
return 6; // 3 hearts
|
return 6; // 3 hearts
|
||||||
else if(subname == "apple")
|
else if(subname == "apple")
|
||||||
return 4; // 2 hearts
|
return 4; // 2 hearts
|
||||||
|
else if(subname == "apple_iron")
|
||||||
|
return 8; // 4 hearts
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user