1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00

Added Iron Apple which heals 4 Hearts

This commit is contained in:
sfan5 2011-09-12 20:10:17 +02:00
parent 785a2fd23a
commit 88dc8c694e
3 changed files with 20 additions and 0 deletions

View file

@ -73,6 +73,8 @@ std::string item_craft_get_image_name(const std::string &subname)
return "firefly.png";
else if(subname == "apple")
return "apple.png";
else if(subname == "apple_iron")
return "apple_iron.png";
else
return "cloud.png"; // just something
}
@ -130,6 +132,8 @@ bool item_craft_is_eatable(const std::string &subname)
return true;
else if(subname == "apple")
return true;
else if(subname == "apple_iron")
return true;
return false;
}
@ -139,6 +143,8 @@ s16 item_craft_eat_hp_change(const std::string &subname)
return 6; // 3 hearts
else if(subname == "apple")
return 4; // 2 hearts
else if(subname == "apple_iron")
return 8; // 4 hearts
return 0;
}