From 69720a4fd5fa7009eb925ac52573a3f8d8484053 Mon Sep 17 00:00:00 2001 From: h-v-smacker Date: Wed, 28 Feb 2018 01:28:39 +0300 Subject: support for pineapple and Co --- init.lua | 33 +++++++++++++++++++++++++++++---- textures/canned_garlic_cloves.png | Bin 0 -> 934 bytes textures/canned_onion.png | Bin 677 -> 1091 bytes textures/canned_pineapple.png | Bin 0 -> 717 bytes textures/canned_wild_onion.png | Bin 0 -> 677 bytes textures/honey_jar.png | Bin 552 -> 601 bytes 6 files changed, 29 insertions(+), 4 deletions(-) create mode 100644 textures/canned_garlic_cloves.png create mode 100644 textures/canned_pineapple.png create mode 100644 textures/canned_wild_onion.png diff --git a/init.lua b/init.lua index 029debc..a28fc53 100644 --- a/init.lua +++ b/init.lua @@ -77,14 +77,14 @@ local canned_food_definitions = { amount = 5, sugar = true }, - canned_onion = { - proper_name = "Canned onions", + canned_wild_onion = { + proper_name = "Canned wild onions", found_in = "ethereal", obj_name = "ethereal:wild_onion_plant", orig_nutritional_value = 2, amount = 4, sugar = false, - transforms = "Pickled onions" + transforms = "Pickled wild onions" }, blueberry_jam = { proper_name = "Blueberry jam", @@ -213,7 +213,32 @@ local canned_food_definitions = { amount = 4, sugar = false }, - + canned_pineapple = { + proper_name = "Canned pineapple rings", + found_in = "farming", + obj_name = "farming:pineapple_ring", + orig_nutritional_value = 1, + amount = 5, + sugar = false + }, + canned_onion = { + proper_name = "Canned onions", + found_in = "farming", + obj_name = "farming:onion", + orig_nutritional_value = 1, + amount = 4, + sugar = false, + transforms = "Pickled onions" + }, + canned_garlic_cloves = { + proper_name = "Canned garlic cloves", + found_in = "farming", + obj_name = "farming:garlic_clove", + orig_nutritional_value = 0.5, + amount = 8, + sugar = false, + transforms = "Pickled garlic cloves" + }, } diff --git a/textures/canned_garlic_cloves.png b/textures/canned_garlic_cloves.png new file mode 100644 index 0000000..6d41ff7 Binary files /dev/null and b/textures/canned_garlic_cloves.png differ diff --git a/textures/canned_onion.png b/textures/canned_onion.png index d1c7ba4..3050a82 100644 Binary files a/textures/canned_onion.png and b/textures/canned_onion.png differ diff --git a/textures/canned_pineapple.png b/textures/canned_pineapple.png new file mode 100644 index 0000000..b1a10a2 Binary files /dev/null and b/textures/canned_pineapple.png differ diff --git a/textures/canned_wild_onion.png b/textures/canned_wild_onion.png new file mode 100644 index 0000000..d1c7ba4 Binary files /dev/null and b/textures/canned_wild_onion.png differ diff --git a/textures/honey_jar.png b/textures/honey_jar.png index 59dc491..daf853c 100644 Binary files a/textures/honey_jar.png and b/textures/honey_jar.png differ -- cgit v1.2.3