From 874dc0214f375c579a6914633642f279e8c44092 Mon Sep 17 00:00:00 2001 From: sys4-fr Date: Thu, 2 Mar 2017 16:29:22 +0100 Subject: [PATCH] Add teosinte and corn with related crafts --- README.md | 25 +- init.lua | 357 +++++++++++++++++++------ maidroid_core_morefarming.lua | 3 + textures/morefarming_chicha.png | Bin 0 -> 166 bytes textures/morefarming_corn.png | Bin 0 -> 303 bytes textures/morefarming_corn_1.png | Bin 0 -> 144 bytes textures/morefarming_corn_2.png | Bin 0 -> 155 bytes textures/morefarming_corn_3.png | Bin 0 -> 168 bytes textures/morefarming_corn_4.png | Bin 0 -> 181 bytes textures/morefarming_corn_5.png | Bin 0 -> 195 bytes textures/morefarming_corn_6.png | Bin 0 -> 212 bytes textures/morefarming_corn_7.png | Bin 0 -> 235 bytes textures/morefarming_corn_8.png | Bin 0 -> 235 bytes textures/morefarming_corn_cooked.png | Bin 0 -> 208 bytes textures/morefarming_corn_seed.png | Bin 0 -> 194 bytes textures/morefarming_teosinte.png | Bin 0 -> 170 bytes textures/morefarming_teosinte_1.png | Bin 0 -> 131 bytes textures/morefarming_teosinte_2.png | Bin 0 -> 140 bytes textures/morefarming_teosinte_3.png | Bin 0 -> 143 bytes textures/morefarming_teosinte_4.png | Bin 0 -> 154 bytes textures/morefarming_teosinte_5.png | Bin 0 -> 180 bytes textures/morefarming_teosinte_6.png | Bin 0 -> 205 bytes textures/morefarming_teosinte_7.png | Bin 0 -> 227 bytes textures/morefarming_teosinte_8.png | Bin 0 -> 236 bytes textures/morefarming_teosinte_seed.png | Bin 0 -> 185 bytes 25 files changed, 302 insertions(+), 83 deletions(-) create mode 100644 textures/morefarming_chicha.png create mode 100644 textures/morefarming_corn.png create mode 100644 textures/morefarming_corn_1.png create mode 100644 textures/morefarming_corn_2.png create mode 100644 textures/morefarming_corn_3.png create mode 100644 textures/morefarming_corn_4.png create mode 100644 textures/morefarming_corn_5.png create mode 100644 textures/morefarming_corn_6.png create mode 100644 textures/morefarming_corn_7.png create mode 100644 textures/morefarming_corn_8.png create mode 100644 textures/morefarming_corn_cooked.png create mode 100644 textures/morefarming_corn_seed.png create mode 100644 textures/morefarming_teosinte.png create mode 100644 textures/morefarming_teosinte_1.png create mode 100644 textures/morefarming_teosinte_2.png create mode 100644 textures/morefarming_teosinte_3.png create mode 100644 textures/morefarming_teosinte_4.png create mode 100644 textures/morefarming_teosinte_5.png create mode 100644 textures/morefarming_teosinte_6.png create mode 100644 textures/morefarming_teosinte_7.png create mode 100644 textures/morefarming_teosinte_8.png create mode 100644 textures/morefarming_teosinte_seed.png diff --git a/README.md b/README.md index 23b929b..f763f56 100644 --- a/README.md +++ b/README.md @@ -44,16 +44,27 @@ A concrete example with Wild carrot: - 11- Good you have a new variety of carrots, you taste it and you realize that his nutritional power is much better than the wild version. For now this mod add: -- Wild Carrot -- Carrot (domestic) +- Wild Carrot -> Carrot - Golden Carrot +- Teosinte -> Corn +- Corn on the Cob +- Chicha (Bottle of Ethanol equivalent) (Original Texture by TenPlus1 modified by me) Behaviour with optional mods loaded (for now): -- farming_redo: Domestic and golden carrots are provided by farming_redo. There is no carrot seeds. -- farming_plus: Domestic carrots and carrots seeds are provided by farming_plus. -- farming_redo and farming_plus together: Domestic carrots and carrots seeds provided by farming_plus, golden carrot by farming_redo. -- maidroid_core: The core farming was modified so that your robot has ability to harvest and plant wild carrots (flowers and seeds) and domestic carrots. -- WARNING: If farming_redo or farming_plus is loaded then maidroid_core will not load due to incompatibility. +- farming_redo: +--> Carrots and golden carrots are provided by farming_redo. There is no carrot seeds. +--> Corn, Corn on the Cob, Chicha replaced by Bottle of Ethanol (craft slightly changed) +- farming_plus: +--> Carrots and carrots seeds are provided by farming_plus. +- farming_redo and farming_plus together: +--> Carrots and carrots seeds provided by farming_plus, golden carrot by farming_redo. +- maidroid_core: The core farming was modified so that your robot has ability to harvest and plant: +--> wild carrots (flowers and seeds) +--> Carrots +--> Teosinte (Flowers and seeds) +--> Corn + +WARNING: If farming_redo or farming_plus is loaded then maidroid_core will not load due to incompatibility. LICENCES: - Code & Textures: GPLv3 diff --git a/init.lua b/init.lua index 5927b0a..aca3ebb 100644 --- a/init.lua +++ b/init.lua @@ -6,97 +6,297 @@ local redo = farming.mod and farming.mod == "redo" local plus = minetest.get_modpath("farming_plus") --- Wild carrot -minetest.override_item("moreflowers:wild_carrot", { - drop = { - max_items = 1, - items = { - { items = {"morefarming:seed_wildcarrot"}, rarity = 12}, - { items = {"moreflowers:wild_carrot"}}, - } - }}) +-- Override flowers -- +-- +minetest.override_item( + "moreflowers:wild_carrot", { + drop = { + max_items = 1, + items = { + { items = {"morefarming:seed_wildcarrot"}, rarity = 12}, + { items = {"moreflowers:wild_carrot"}}, + } + }}) -farming.register_plant("morefarming:wildcarrot", { - description = "Wild Carrot seed", - inventory_image = "morefarming_wildcarrot_seed.png", - steps = 8, - minlight = 13, - maxlight = default.LIGHT_MAX, - fertility = {"grassland"}, - groups = {flammable = 4}, - }) +minetest.override_item( + "moreflowers:teosinte", { + drop = { + max_items = 1, + items = { + { items = {"morefarming:seed_teosinte"}, rarity = 6}, + { items = {"moreflowers:teosinte"}}, + } + }}) -local carrot_seed = "morefarming:seed_carrot" -if redo then carrot_seed = "farming:carrot" end -if plus then carrot_seed = "farming_plus:carrot_seed" end -minetest.override_item("morefarming:wildcarrot_8", { - drop = { - max_items = 3, - items = { - { items = {"morefarming:seed_wildcarrot"}, rarity = 6}, - { items = {carrot_seed}, rarity = 8}, - { items = {"morefarming:wildcarrot"}, rarity = 2}, - { items = {"moreflowers:wild_carrot"}}, - } - }}) +-- Register morefarming plants -- +-- +-- Wild Carrot +farming.register_plant( + "morefarming:wildcarrot", + { + description = "Wild Carrot seed", + inventory_image = "morefarming_wildcarrot_seed.png", + steps = 8, + minlight = 13, + maxlight = default.LIGHT_MAX, + fertility = {"grassland"}, + groups = {flammable = 4}, + }) -minetest.override_item("morefarming:wildcarrot", { - on_use = minetest.item_eat(1) - }) +minetest.override_item( + "morefarming:wildcarrot", + { + on_use = minetest.item_eat(1) + }) + +-- Teosinte +farming.register_plant( + "morefarming:teosinte", + { + description = "Teosinte seed", + inventory_image = "morefarming_teosinte_seed.png", + steps = 8, + minlight = 13, + maxlight = default.LIGHT_MAX, + fertility = {"grassland", "desert"}, + groups = {flammable = 4}, + }) + +for i=1, 8 do + minetest.override_item( + "morefarming:teosinte_"..i, + { + visual_scale = 1.3 + }) +end if not redo and not plus then -- Carrot - farming.register_plant("morefarming:carrot", { - description = "Carrot seed", - paramtype2 = "meshoptions", - inventory_image = "morefarming_carrot_seed.png", - steps = 8, - minlight = 13, - maxlight = default.LIGHT_MAX, - fertility = {"grassland"}, - groups = {flammable = 4}, - place_param2 = 3, - }) + farming.register_plant( + "morefarming:carrot", + { + description = "Carrot seed", + paramtype2 = "meshoptions", + inventory_image = "morefarming_carrot_seed.png", + steps = 8, + minlight = 13, + maxlight = default.LIGHT_MAX, + fertility = {"grassland"}, + groups = {flammable = 4}, + place_param2 = 3, + }) - minetest.override_item("morefarming:carrot", { - on_use = minetest.item_eat(4) - }) + minetest.override_item( + "morefarming:carrot", + { + on_use = minetest.item_eat(4) + }) end -local carrot_item = "morefarming:carrot" -if plus then carrot_item = "farming_plus:carrot_item" end - if not redo then - -- golden carrot - minetest.register_craftitem("morefarming:carrot_gold", { - description = "Golden Carrot", - inventory_image = "morefarming_carrot_gold.png", - on_use = minetest.item_eat(6), - }) + -- Corn + farming.register_plant( + "morefarming:corn", + { + description = "Corn seed", + inventory_image = "morefarming_corn_seed.png", + steps = 8, + minlight = 13, + maxlight = default.LIGHT_MAX, + fertility = {"grassland", "desert"}, + groups = {flammable = 4}, + }) + + for i=1, 8 do + minetest.override_item( + "morefarming:corn_"..i, + { + visual_scale = 1.6 + }) + end + + minetest.override_item( + "morefarming:corn", + { + on_use = minetest.item_eat(3) + }) - minetest.register_craft({ - output = "morefarming:carrot_gold", - recipe = { - {"", "default:gold_lump", ""}, - {"default:gold_lump", carrot_item, "default:gold_lump"}, - {"", "default:gold_lump", ""}, - } - }) -elseif plus then - minetest.register_craft({ - output = "farming:carrot_gold", - recipe = { - {"", "default:gold_lump", ""}, - {"default:gold_lump", carrot_item, "default:gold_lump"}, - {"", "default:gold_lump", ""}, - } - }) end +-- Override mature plants-- +-- +local carrot_seed = "morefarming:seed_carrot" +local corn_seed = "morefarming:seed_corn" + +if redo then + carrot_seed = "farming:carrot" + corn_seed = "farming:corn" +end + +if plus then + carrot_seed = "farming_plus:carrot_seed" +end + +-- Wild Carrot +minetest.override_item( + "morefarming:wildcarrot_8", { + drop = { + max_items = 3, + items = { + { items = {"morefarming:seed_wildcarrot"}, rarity = 6}, + { items = {carrot_seed}, rarity = 8}, + { items = {"morefarming:wildcarrot"}, rarity = 2}, + { items = {"moreflowers:wild_carrot"}}, + } + }}) + +-- Teosinte +minetest.override_item( + "morefarming:teosinte_8", { + drop = { + max_items = 3, + items = { + { items = {"morefarming:seed_teosinte"}, rarity = 3}, + { items = {corn_seed}, rarity = 8}, + { items = {"morefarming:teosinte"}, rarity = 2}, + { items = {"moreflowers:teosinte"}}, + } + }}) + +-- Register craftitems +-- +local carrot_item = "morefarming:carrot" +local corn_item = "morefarming:corn" + +if plus then + carrot_item = "farming_plus:carrot_item" +end + +if not redo then + + -- golden carrot + minetest.register_craftitem( + "morefarming:carrot_gold", + { + description = "Golden Carrot", + inventory_image = "morefarming_carrot_gold.png", + on_use = minetest.item_eat(6), + }) + + minetest.register_craft( + { + output = "morefarming:carrot_gold", + recipe = { + {"", "default:gold_lump", ""}, + {"default:gold_lump", carrot_item, "default:gold_lump"}, + {"", "default:gold_lump", ""}, + } + }) + + -- Corn on the cob + minetest.register_craftitem( + "morefarming:corn_cooked", + { + description = "Corn on the Cob", + inventory_image = "morefarming_corn_cooked.png", + on_use = minetest.item_eat(5), + }) + + minetest.register_craft( + { + type = "cooking", + cooktime = 10, + output = "morefarming:corn_cooked", + recipe = "morefarming:corn" + }) + + if minetest.get_modpath("vessels") then + -- Chicha (Ethanol equivalent ;) + minetest.register_craftitem( + "morefarming:chicha", + { + description = "Chicha", + inventory_image = "morefarming_chicha.png", + }) + + minetest.register_craft( + { + output = "morefarming:chicha 2", + recipe = { + { "vessels:glass_bottle", "vessels:glass_bottle", "morefarming:corn"}, + { "morefarming:corn", "morefarming:corn", "morefarming:corn"}, + } + }) + + minetest.register_craft( + { + output = "morefarming:chicha", + recipe = { + { "vessels:glass_bottle", "morefarming:teosinte", "morefarming:teosinte"}, + { "morefarming:teosinte", "morefarming:teosinte", "morefarming:teosinte"}, + } + }) + + minetest.register_craft( + { + type = "fuel", + recipe = "morefarming:chicha", + burntime = 240, + replacements = {{"morefarming:chicha", "vessels:glass_bottle"}} + }) + end + +elseif plus then + -- Golden Carrot + minetest.register_craft( + { + output = "farming:carrot_gold", + recipe = { + {"", "default:gold_lump", ""}, + {"default:gold_lump", carrot_item, "default:gold_lump"}, + {"", "default:gold_lump", ""}, + } + }) +end + +if redo then + + if minetest.get_modpath("vessels") then + -- Bottle of Ethanol + minetest.clear_craft( + { + recipe = { + {"vessels:glass_bottle", "farming:corn", "farming:corn"}, + {"farming:corn", "farming:corn", "farming:corn"}, + } + }) + + minetest.register_craft( + { + output = "farming:bottle_ethanol 2", + recipe = { + { "vessels:glass_bottle", "vessels:glass_bottle", "farming:corn"}, + { "farming:corn", "farming:corn", "farming:corn"}, + } + }) + + minetest.register_craft( + { + output = "farming:bottle_ethanol", + recipe = { + { "vessels:glass_bottle", "morefarming:teosinte", "morefarming:teosinte"}, + { "morefarming:teosinte", "morefarming:teosinte", "morefarming:teosinte"}, + } + }) + end +end + + -- Maidroid behaviour if not redo and not plus and minetest.get_modpath("maidroid_core") then minetest.registered_items["moreflowers:wild_carrot"].groups["seed"] = 1 + minetest.registered_items["moreflowers:teosinte"].groups["seed"] = 1 dofile(minetest.get_modpath("morefarming").."/maidroid_core_morefarming.lua") end @@ -104,8 +304,13 @@ end if minetest.get_modpath("bonemeal") and bonemeal then bonemeal:add_crop({{"morefarming:wildcarrot_", 8, "morefarming:seed_wildcarrot"}}) + bonemeal:add_crop({{"morefarming:teosinte_", 8, "morefarming:seed_teosinte"}}) - if not redo and not plus then - bonemeal:add_crop({{"morefarming:carrot_", 8, "morefarming:seed_carrot"}}) + if not redo then + if not plus then + bonemeal:add_crop({{"morefarming:carrot_", 8, "morefarming:seed_carrot"}}) + end + + bonemeal:add_crop({{"morefarming:corn_", 8, "morefarming:seed_corn"}}) end end diff --git a/maidroid_core_morefarming.lua b/maidroid_core_morefarming.lua index cbd3917..8291b1d 100644 --- a/maidroid_core_morefarming.lua +++ b/maidroid_core_morefarming.lua @@ -19,6 +19,9 @@ local target_plants = { "moreflowers:wild_carrot", "morefarming:wildcarrot_8", "morefarming:carrot_8", + "moreflowers:teosinte", + "morefarming:teosinte_8", + "morefarming:corn_8", } local _aux = maidroid_core._aux diff --git a/textures/morefarming_chicha.png b/textures/morefarming_chicha.png new file mode 100644 index 0000000000000000000000000000000000000000..d04c02f23b65296410509edb0375ec761b2e57e6 GIT binary patch literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(aoyfp&pmO%XS?iA-IdJvT zjf+>$KYIM&!^ijk|NmdR^jj`a8DmM1UoeBivm0qZj-{uIV+hCfzopr0Ky77NB{r; literal 0 HcmV?d00001 diff --git a/textures/morefarming_corn.png b/textures/morefarming_corn.png new file mode 100644 index 0000000000000000000000000000000000000000..64b871bb434b0cbcca00012c4affa9568bea88a3 GIT binary patch literal 303 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!cYsfbt0Dt~IV-P>uvDUis%AJ_ zj9XNxFN0wc=Tx^)%Uqt87$)C($)@xQ!-)*Di-CeX+0|)%C}YI2_K8FnxdZHF>%H2g<9V8&UB`*dTff7pC?eeK-@ef^K9|s+YgKv z6if2_zIVY+V!zv3%k=xNk4k2(Ez|6Eyv)DyFQ>~&PW5R(*D-jy`njxgN@xNA9+hy7 literal 0 HcmV?d00001 diff --git a/textures/morefarming_corn_1.png b/textures/morefarming_corn_1.png new file mode 100644 index 0000000000000000000000000000000000000000..e704a900e37862d7d0973a33b9110cfe1e70087a GIT binary patch literal 144 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?bRY+lwsb*GhVbJJe(4WNM zFptS~DYO4tp15sX*}FuGkBAfT~l4pb`d8S3j3^P6#-u(4WNM zFptS~DYO4tp15sX*}FuGkBAf_Dvy Mp00i_>zopr00Mn8;s5{u literal 0 HcmV?d00001 diff --git a/textures/morefarming_corn_4.png b/textures/morefarming_corn_4.png new file mode 100644 index 0000000000000000000000000000000000000000..9aa769320333e1fd964ee743a6f5d5b1958a3754 GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b&E6%dkisBS&8*(SpwY#k zKZ(I%9+T@*X8*N3aof0xkBAftz%#-u(CA{& zpTyuWkI8i@v;SJ2xNTh7yF`nRh!h=BZaA(f?|H8usEe^A$S;_|;n|HeAjjR)#W95A zdUC=6_8Wf2ADkitrSlvl)?^1C{1VGn$lfulO<={V62=*J&94)>raPK3p4nmcFp9zD on2yA%7Ei`y63e=0OM5UdD7SEXip=z02sDzx)78&qol`;+01I?GPyhe` literal 0 HcmV?d00001 diff --git a/textures/morefarming_corn_6.png b/textures/morefarming_corn_6.png new file mode 100644 index 0000000000000000000000000000000000000000..7331b6a64f3ae8723072ba25d620a8ac83d5b561 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VWWl&^LNMVqvW>#-u(CA{& zpTyuWkI8i@v;SJ2xNTh7yF`nRh!h=BZaA)4rS&!esEe^A$S;_|;n|HeASc4p#W95A zdU8TS#AycBJHiWi*6{|g-OgmY$C?m!q)mEG0^93bAqKV69q%x@e4b+3;vizYocn`Q z#4)z(2Tk;wbC_ln<{sM0&@m;_;7W!X>x`{T2CsKEvM{Xp$hY~$3&}4)I~Y7&{an^L HB{Ts5tt~~H literal 0 HcmV?d00001 diff --git a/textures/morefarming_corn_7.png b/textures/morefarming_corn_7.png new file mode 100644 index 0000000000000000000000000000000000000000..1a309ef9b7696782c3b428815f337ff47fb4b85c GIT binary patch literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!aez;Vs{;c=gO8p}HM4pPgGLua zXNj!-BnF3hOs-3r{nzruZR5(`B|2}7_{^OQMMsnyj%zMCEb{C@UlmY0V@Z%-FoVOh z8)-mJnx~6nh{WaC{y@G13LMVXg^P^XzuUk4;+$&sXG>;<<^|O*=deTxbJezIwm-I} z1>E%1x+@+sy`w0~&-&@P!k^~Fj$M6>kN$jFbXY*pl)w f_qyWucfK+1UB`64Yg@TK&_)JNS3j3^P6|Q8(e6{A$4a%!@o`K9_ED7=pW^j0R zBMrz&^K@|xk+>Y&@5y(-fP?w2S*wHCr~lWd$!sza6OR^CW?q+NaYVAG&Uxy`cXGFW zq(;PcihO6S^j@{nC*5yn(42j$x)XL7I?R&O&y!GUS~~TM{IVGlmwWh5u6EG+5-)sc f=X<;FeYx_hr!hU=w1brsXd{ECtDnm{r-UW|XZBJF literal 0 HcmV?d00001 diff --git a/textures/morefarming_corn_cooked.png b/textures/morefarming_corn_cooked.png new file mode 100644 index 0000000000000000000000000000000000000000..c8df945c98dfdc7d1ea32a0c2ea8400a28c8ed3b GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(aHDqAW7m{j@V%X>rQJGM< zua5iw64rkQ6#o7Hv%R%?I#3y7NswPKgTu2MX+Tc0r;B3<$Mxg~2^kDZY-|Qc4^CLc z@Nl`hmO%r{jTq;HJZ(k6iW_Eqd2~cUpn30-fY3%pjnF(bmMMu0oEnU*5)!8-i?%xO zm=%XBs!m{t-Xs*!&}bScsB_=|gJ?oRLKD{k28Mq@0;hic^Nf(8MR9%%t{Y z5=W}VN=M18vjJ|CjD4mXO%db^e!~>J<_c4=3{S8!PwJKfBAYc8j2WiQHBA O5QC?ypUXO@geCwcSTdCW literal 0 HcmV?d00001 diff --git a/textures/morefarming_teosinte_1.png b/textures/morefarming_teosinte_1.png new file mode 100644 index 0000000000000000000000000000000000000000..bdeaf0ea61f438d6ca0c3532f85ce8f037eeed58 GIT binary patch literal 131 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU6>w!xjAyW@W$^7{@SMuv zvxgz|A;Y5oGUru%9Dr&VOM?7@862M7NCR>tJzX3_IIbrrEYJ^VFbs)Y$fKqz;mqK{ Zz`#|=(C9mR|1+Q>22WQ%mvv4FO#rB%AyohX literal 0 HcmV?d00001 diff --git a/textures/morefarming_teosinte_2.png b/textures/morefarming_teosinte_2.png new file mode 100644 index 0000000000000000000000000000000000000000..c29f0a1b68a78909c78bfa11789dee0101e3eecf GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU_3dI1aAi=8XRxSc@SMuv zvxgz|A;Y5oGNzwR-viY!mIV0)GdMiEkp|=_dAc};a9mGLSio-3VCW;s6LF9yEsZs~ iW5OhZkZGPA9zZ2MjJa+6e^P*|89ZJ6T-G@yGywoJ@FhwB literal 0 HcmV?d00001 diff --git a/textures/morefarming_teosinte_3.png b/textures/morefarming_teosinte_3.png new file mode 100644 index 0000000000000000000000000000000000000000..d4aa2e15f709c2f85848c460e099891353a2d612 GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU_3dI1aAi=8XRxSc@SMuv zvxgz|A;Y5oGNzwR-viY!mIV0)GdMiEkp|?bdb&7P*08ZhQo)BgExDsX xb2FoMN1CZwSOdpWEl%gD#+8P1bA?g^zX0_zc)I$ztaD0e0swtsDYXCq literal 0 HcmV?d00001 diff --git a/textures/morefarming_teosinte_5.png b/textures/morefarming_teosinte_5.png new file mode 100644 index 0000000000000000000000000000000000000000..54f96e97447811e930a8422941294150b2e66196 GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDUUG!f@z?DHUp24D)!MBUS zb1H++9){G13|mB!KLFJ*mIV0)GdMiEkp|>=dAc};a9mGLP!QU1NP?3u;Z%>U1>>25 z)Pgn-gV|Oa8Zz0EnUe*Sk2c(#p~$di#?6Ma3?7>$rL`NDN}QU~!mDs=M$4rIJd6sA Z3{?^ALdFkocLPmj@O1TaS?83{1OOw`HsJsO literal 0 HcmV?d00001 diff --git a/textures/morefarming_teosinte_6.png b/textures/morefarming_teosinte_6.png new file mode 100644 index 0000000000000000000000000000000000000000..1e146d276c830f1ab72d3b21acefe751cb51b163 GIT binary patch literal 205 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDUUG!f@z?DHUp24D)!MBUS zb1H++9){G13|mB!KLFJ*mIV0)GdMiEkp|=>d%8G=a9mGLIKUqfsVHK-I-6mFUqY&X z0R!iT8B5uhH%jEJ%Q?43L6bc#m|cun;jrbE8wV^{H6|w=$T=f0i9y6D+04V3`BLh! zV_e79u=2d&O!Yd%mN1!lM$09x13GGq3XBXF)Oam-{T7-8w2r~k)z4*}Q$iB}#TGua literal 0 HcmV?d00001 diff --git a/textures/morefarming_teosinte_7.png b/textures/morefarming_teosinte_7.png new file mode 100644 index 0000000000000000000000000000000000000000..98fd0e0ebf583eae0260a332c007cb75ddddd392 GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(aod^_kWl)S~u&8D5?PBnp z%HXqyA@w1{qW?0BdxA`X${0(6{DK)Ap4~_Ta>_hi978y+Cnq>CF62#EwQ#Da&+<*% zcd;?NGzt60!ajkaJF==kN_xV;hOTOAi=CO!H^-Vn9tPAz^^bt!`m>yERDl6 z*(1Rq+04T@IXywc*euK-O*bLIUn5w^jKOPzA&UX$QqhLD2|^594GohNCNMB??-H7^ TUhJs`&;<;hu6{1-oD!M_=*$aXu`;U(`bevN$HFHCwZF}u%~i5)hOXA6)?3xC%y=N+0D;Qvcfdj3n+E4>!& ztG~=l5wi-g3|zA3aEn>%yM>zzKjy{EpJ2L0Zu5eKS99)23dpy6u*Mv@H;1j~&W-Y& h`!4eQ;Le`9Z=H^4tLi=WQ$VLMc)I$ztaD0e0ssPDS5N=| literal 0 HcmV?d00001 diff --git a/textures/morefarming_teosinte_seed.png b/textures/morefarming_teosinte_seed.png new file mode 100644 index 0000000000000000000000000000000000000000..12f4c7f1385a2ac401ba009e640b9538065af03f GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa4)6(aoyfo-%E_$FcOZ6P6` zBP(E|uHdgBA8DW--gf0IP#I%MkY6x^!?PP{K#q^6i(?4K_2h&DEP|q{TnTK^D;F}% zIQUBI!~q5|Zn1=f!j@Ip;w=~6tW9uZaCTp**m3cofLIp8rK$H0FkHRImpWsXg+oMJ e6Bo}728NFpxzy`SM3(@~W$<+Mb6Mw<&;$TI*fpX6 literal 0 HcmV?d00001