summaryrefslogtreecommitdiff
path: root/src/content_inventory.cpp
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2011-09-12 20:10:17 +0200
committersfan5 <sfan5@live.de>2011-09-12 20:10:17 +0200
commit88dc8c694ed0e182b4d5ace4fcd94a0a82946c31 (patch)
tree5c10c020b77919076fa26ff0faf01c50e7895ac4 /src/content_inventory.cpp
parent785a2fd23a47af3629db824adc5e4e1376880d4d (diff)
downloadminetest-88dc8c694ed0e182b4d5ace4fcd94a0a82946c31.tar.gz
minetest-88dc8c694ed0e182b4d5ace4fcd94a0a82946c31.tar.bz2
minetest-88dc8c694ed0e182b4d5ace4fcd94a0a82946c31.zip
Added Iron Apple which heals 4 Hearts
Diffstat (limited to 'src/content_inventory.cpp')
-rw-r--r--src/content_inventory.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/content_inventory.cpp b/src/content_inventory.cpp
index e0c9d8b86..59997ee4b 100644
--- a/src/content_inventory.cpp
+++ b/src/content_inventory.cpp
@@ -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;
}