summaryrefslogtreecommitdiff
path: root/src/content_craft.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_craft.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_craft.cpp')
-rw-r--r--src/content_craft.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/content_craft.cpp b/src/content_craft.cpp
index 20ab5f069..8e8b17a9b 100644
--- a/src/content_craft.cpp
+++ b/src/content_craft.cpp
@@ -428,6 +428,20 @@ InventoryItem *craft_get_result(InventoryItem **items)
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;
}