From 9253d08cd441111837fef45f1e35f22d797c037f Mon Sep 17 00:00:00 2001 From: TenPlus1 Date: Sun, 6 Jan 2019 10:28:24 +0000 Subject: [PATCH] added oats, rye and rice thanks to ademants grains mod --- crops/barley.lua | 10 ++- crops/ryeoatrice.lua | 132 ++++++++++++++++++++++++++++++++ farming.conf_example | 1 + grass.lua | 5 +- init.lua | 4 +- license.txt | 5 ++ textures/farming_oat.png | Bin 0 -> 274 bytes textures/farming_oat_1.png | Bin 0 -> 114 bytes textures/farming_oat_2.png | Bin 0 -> 143 bytes textures/farming_oat_3.png | Bin 0 -> 173 bytes textures/farming_oat_4.png | Bin 0 -> 190 bytes textures/farming_oat_5.png | Bin 0 -> 219 bytes textures/farming_oat_6.png | Bin 0 -> 236 bytes textures/farming_oat_7.png | Bin 0 -> 255 bytes textures/farming_oat_8.png | Bin 0 -> 310 bytes textures/farming_oat_seed.png | Bin 0 -> 142 bytes textures/farming_rice.png | Bin 0 -> 325 bytes textures/farming_rice_1.png | Bin 0 -> 114 bytes textures/farming_rice_2.png | Bin 0 -> 143 bytes textures/farming_rice_3.png | Bin 0 -> 173 bytes textures/farming_rice_4.png | Bin 0 -> 189 bytes textures/farming_rice_5.png | Bin 0 -> 217 bytes textures/farming_rice_6.png | Bin 0 -> 245 bytes textures/farming_rice_7.png | Bin 0 -> 261 bytes textures/farming_rice_8.png | Bin 0 -> 336 bytes textures/farming_rice_bread.png | Bin 0 -> 392 bytes textures/farming_rice_flour.png | Bin 0 -> 272 bytes textures/farming_rice_seed.png | Bin 0 -> 201 bytes textures/farming_rye.png | Bin 0 -> 242 bytes textures/farming_rye_1.png | Bin 0 -> 114 bytes textures/farming_rye_2.png | Bin 0 -> 143 bytes textures/farming_rye_3.png | Bin 0 -> 173 bytes textures/farming_rye_4.png | Bin 0 -> 189 bytes textures/farming_rye_5.png | Bin 0 -> 217 bytes textures/farming_rye_6.png | Bin 0 -> 237 bytes textures/farming_rye_7.png | Bin 0 -> 254 bytes textures/farming_rye_8.png | Bin 0 -> 310 bytes textures/farming_rye_seed.png | Bin 0 -> 142 bytes 38 files changed, 154 insertions(+), 3 deletions(-) create mode 100644 crops/ryeoatrice.lua create mode 100644 textures/farming_oat.png create mode 100644 textures/farming_oat_1.png create mode 100644 textures/farming_oat_2.png create mode 100644 textures/farming_oat_3.png create mode 100644 textures/farming_oat_4.png create mode 100644 textures/farming_oat_5.png create mode 100644 textures/farming_oat_6.png create mode 100644 textures/farming_oat_7.png create mode 100644 textures/farming_oat_8.png create mode 100644 textures/farming_oat_seed.png create mode 100644 textures/farming_rice.png create mode 100644 textures/farming_rice_1.png create mode 100644 textures/farming_rice_2.png create mode 100644 textures/farming_rice_3.png create mode 100644 textures/farming_rice_4.png create mode 100644 textures/farming_rice_5.png create mode 100644 textures/farming_rice_6.png create mode 100644 textures/farming_rice_7.png create mode 100644 textures/farming_rice_8.png create mode 100644 textures/farming_rice_bread.png create mode 100644 textures/farming_rice_flour.png create mode 100644 textures/farming_rice_seed.png create mode 100644 textures/farming_rye.png create mode 100644 textures/farming_rye_1.png create mode 100644 textures/farming_rye_2.png create mode 100644 textures/farming_rye_3.png create mode 100644 textures/farming_rye_4.png create mode 100644 textures/farming_rye_5.png create mode 100644 textures/farming_rye_6.png create mode 100644 textures/farming_rye_7.png create mode 100644 textures/farming_rye_8.png create mode 100644 textures/farming_rye_seed.png diff --git a/crops/barley.lua b/crops/barley.lua index 6f3cb97..cc5ca0f 100644 --- a/crops/barley.lua +++ b/crops/barley.lua @@ -110,5 +110,13 @@ farming.registered_plants["farming:barley"] = { seed = "farming:seed_barley", minlight = 13, maxlight = 15, - steps = 8 + steps = 7 } + +-- Fuel + +minetest.register_craft({ + type = "fuel", + recipe = "farming:barley", + burntime = 1, +}) diff --git a/crops/ryeoatrice.lua b/crops/ryeoatrice.lua new file mode 100644 index 0000000..9344201 --- /dev/null +++ b/crops/ryeoatrice.lua @@ -0,0 +1,132 @@ + +--= A nice addition from Ademant's grain mod :) + +-- Rye + +farming.register_plant("farming:rye", { + description = "Rye seed", + paramtype2 = "meshoptions", + inventory_image = "farming_rye_seed.png", + steps = 8, + minlight = 13, + maxlight = default.LIGHT_MAX, + fertility = {"savannah"}, + groups = {flammable = 4}, + place_param2 = 3, +}) + +minetest.override_item("farming:rye", { + groups = {food_rye = 1, flammable = 4} +}) + +minetest.register_craft({ + type = "shapeless", + output = "farming:flour", + recipe = { + "farming:rye", "farming:rye", "farming:rye", "farming:rye", + "farming:mortar_pestle" + }, + replacements = {{"group:food_mortar_pestle", "farming:mortar_pestle"}}, +}) + +-- Oats + +farming.register_plant("farming:oat", { + description = "Oat seed", + paramtype2 = "meshoptions", + inventory_image = "farming_oat_seed.png", + steps = 8, + minlight = 13, + maxlight = default.LIGHT_MAX, + fertility = {"savannah"}, + groups = {flammable = 4}, + place_param2 = 3, +}) + +minetest.override_item("farming:oat", { + groups = {food_oats = 1, flammable = 4} +}) + +minetest.register_craft({ + type = "shapeless", + output = "farming:flour", + recipe = { + "farming:oat", "farming:oat", "farming:oat", "farming:oat", + "farming:mortar_pestle" + }, + replacements = {{"group:food_mortar_pestle", "farming:mortar_pestle"}}, +}) + +-- Rice + +farming.register_plant("farming:rice", { + description = "Rice grains", + paramtype2 = "meshoptions", + inventory_image = "farming_rice_seed.png", + steps = 8, + minlight = 13, + maxlight = default.LIGHT_MAX, + fertility = {"savannah"}, + groups = {flammable = 4}, + place_param2 = 3, +}) + +minetest.override_item("farming:rice", { + groups = {food_rice = 1, flammable = 4} +}) + +minetest.register_craftitem("farming:rice_bread", { + description = "Rice Bread", + inventory_image = "farming_rice_bread.png", + on_use = minetest.item_eat(5), + groups = {food_rice_bread = 1, flammable = 2}, +}) + +minetest.register_craftitem("farming:rice_flour", { + description = "Rice Flour", + inventory_image = "farming_rice_flour.png", + groups = {food_rice_flour = 1, flammable = 1}, +}) + +minetest.register_craft({ + type = "shapeless", + output = "farming:rice_flour", + recipe = { + "farming:rice", "farming:rice", "farming:rice", "farming:rice", + "farming:mortar_pestle" + }, + replacements = {{"group:food_mortar_pestle", "farming:mortar_pestle"}}, +}) + +minetest.register_craft({ + type = "cooking", + cooktime = 15, + output = "farming:rice_bread", + recipe = "farming:rice_flour" +}) + +-- Fuels + +minetest.register_craft({ + type = "fuel", + recipe = "farming:rice_bread", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "farming:rye", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "farming:oat", + burntime = 1, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "farming:rice", + burntime = 1, +}) diff --git a/farming.conf_example b/farming.conf_example index f652e9c..9d1769a 100644 --- a/farming.conf_example +++ b/farming.conf_example @@ -29,6 +29,7 @@ farming.pepper = true farming.pineapple = true farming.peas = true farming.beetroot = true +farming.grains = true -- rarety of crops on map, default is 0.001 (higher number = more crops) farming.rarety = 0.002 diff --git a/grass.lua b/grass.lua index 9644254..447926f 100644 --- a/grass.lua +++ b/grass.lua @@ -8,6 +8,7 @@ for i = 4, 5 do max_items = 1, items = { {items = {'farming:seed_wheat'}, rarity = 5}, + {items = {'farming:seed_oat'},rarity = 10}, {items = {'default:grass_1'}}, } }, @@ -21,7 +22,8 @@ for i = 4, 5 do drop = { max_items = 1, items = { - {items = {'farming:seed_barley'}, rarity = 6}, + {items = {'farming:seed_barley'}, rarity = 5}, + {items = {'farming:seed_rye'},rarity = 10}, {items = {'default:dry_grass_1'}}, } }, @@ -37,6 +39,7 @@ minetest.override_item("default:junglegrass", { max_items = 1, items = { {items = {'farming:seed_cotton'}, rarity = 8}, + {items = {'farming:seed_rice'},rarity = 16}, {items = {'default:junglegrass'}}, } }, diff --git a/init.lua b/init.lua index 04fe300..09c7592 100644 --- a/init.lua +++ b/init.lua @@ -591,7 +591,7 @@ farming.registered_plants[mname .. ":" .. pname] = { minlight = def.minlight, maxlight = def.maxlight } -print(dump(farming.registered_plants[mname .. ":" .. pname])) +--print(dump(farming.registered_plants[mname .. ":" .. pname])) -- Return info return {seed = mname .. ":seed_" .. pname, harvest = mname .. ":" .. pname} end @@ -621,6 +621,7 @@ farming.pepper = true farming.pineapple = true farming.peas = true farming.beetroot = true +farming.grains = true farming.rarety = 0.002 -- 0.006 @@ -685,6 +686,7 @@ ddoo("pineapple.lua", farming.pineapple) ddoo("peas.lua", farming.peas) ddoo("beetroot.lua", farming.beetroot) ddoo("chili.lua", farming.chili) +ddoo("ryeoatrice.lua", farming.grains) dofile(farming.path.."/food.lua") dofile(farming.path.."/mapgen.lua") diff --git a/license.txt b/license.txt index b7bb7a9..480aa8e 100644 --- a/license.txt +++ b/license.txt @@ -128,3 +128,8 @@ Created by TenPlus1 farming_rhubarb.png farming_rhubarb_pie.png farming_hemp*.png + +Created by ademant (CC-BY-3.0) + farming_rye*.png + farming_oat*.png + farming_rice*.png diff --git a/textures/farming_oat.png b/textures/farming_oat.png new file mode 100644 index 0000000000000000000000000000000000000000..e8d5c230d91c18fea294cfc0bbfc421edb99738d GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Uw}`DE0A7WZM?bJ{Qv*|vt~`6 zU*@>1%4t=d+p1NIf#RDw{eV*2+pV`xj^EkkuxDD-zFA58C%GP*<#+7Z!IMj}PtOm& zxIF&ymgZYq%N{*?V4>`z4K$IZB*+hB1HWV1-2E+MzODmU{@+_F^^>VhFk~6QtqSE8?^VV9jGHqKV QwiVjD zT~-&)`R!e6APAITED7=pW^j0RBMr#W@N{tu;gC&ESfFjda8vETfm06-95|sMaNq!2 m$_4`t2F_^=tY&QuEDVavnAYok@IMRG!{F)a=d#Wzp$P!Z`zq}K literal 0 HcmV?d00001 diff --git a/textures/farming_oat_3.png b/textures/farming_oat_3.png new file mode 100644 index 0000000000000000000000000000000000000000..5aba10868276534010d3968af97a5c9663161500 GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=5oy>#khkx^9ifu5Dra zcEp@JS#jZL&dmMQJwQ3ek|4ie28U-i(tsRiPZ!4!4%y^{1$G7ul9~q&oO*EJzzGF` z0|)q0HW+X)a86@jEo*CFViOl*WuC^sF4|TyjfJ(0on4qsJ&cuAl$EuVVaa~Blhsd` R{s9`t;OXk;vd$@?2>>6vG)n*g literal 0 HcmV?d00001 diff --git a/textures/farming_oat_4.png b/textures/farming_oat_4.png new file mode 100644 index 0000000000000000000000000000000000000000..833b134818ee194a891587600a76fef8cb226a68 GIT binary patch literal 190 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=7>zn9Q4Nv1*;m#tng6 zH-;YEn|$;@=B3k3mrs_i)LLZ@RKZvh}L5F?pqN0LYSqNEA}+Yn$tpij>mH~Gxd4}WOP<1Y4w+&t5)$!Ev$b07-%wsr>mdKI;Vst09>Xx7sn6|*|`T7 z3bq)CxL!QH=2wcV*8znab}txz`mi{&?ufV}&tkmeMlPeMfAE(BmU}Kw`023ZXl6&N zfQ+(Ly*AgB?#olw{y38xda(9!#?r{B89t>az8=rJbYW%sU#(uR$ILT*#qX@+3{?Tz O#^CAd=d#Wzp$P!@kyXe5 literal 0 HcmV?d00001 diff --git a/textures/farming_oat_6.png b/textures/farming_oat_6.png new file mode 100644 index 0000000000000000000000000000000000000000..847adc56bef774a97578a7b29882a1921067844e GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=3SH&1bY*&1$n-Imdm? z?63`seKs$S+_N%c|HjmV>v9jRPddITa6(d^F;FRENswPKgTu2MX+Tb~r;B3Vc2j3)vk4jedq`M{Zj3oabk(3I@Rz<;Ib?}S5rJ+xK@$S(SESRr6}U~B_tL>ps; z+&@*BGa(jfGAda{eIXz0td&#mg+0-Xk6U)pOYX-Ft@)pO({*_-P2HTCd%X1g;U(Jw zA8ZPhzv{m0Y~C*O%ZFBSdEeG)%q!;jDDjA2PF~KxWp~CWpmP{JUHx3vIVCg!0H-En Ao&W#< literal 0 HcmV?d00001 diff --git a/textures/farming_oat_8.png b/textures/farming_oat_8.png new file mode 100644 index 0000000000000000000000000000000000000000..c7a5540685317e12bbdceed7ea153812d40f218a GIT binary patch literal 310 zcmV-60m=S}P)m& z8dm*l^m442g2lHeHWuTG*wq@wOlQ=Cb3(Tq&XI1XPJDUP-T9$xlov0;xj7SgWmb^- z^lKyqz5GmT4u}eRa*zlmAl{8RsNCb!7+H@3PC4JvtGpuSKgh@jbQc2&ssI2007*qo IM6N<$g28ru6aWAK literal 0 HcmV?d00001 diff --git a/textures/farming_oat_seed.png b/textures/farming_oat_seed.png new file mode 100644 index 0000000000000000000000000000000000000000..893c93c0d0b0dcdd44f9563bd532709e322fab37 GIT binary patch literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=7=^oaV;6FG=;;R+Dg~ zx9I$WPTP%UoInZ2k|4ie28U-i(tsRwPZ!4!j_Bls15A?=dED9BL?musWjK`}#1Ndr kx1xsSz$(_8J~j*tLR!q_G3`6~fm#?mUHx3vIVCg!03;(PkN^Mx literal 0 HcmV?d00001 diff --git a/textures/farming_rice.png b/textures/farming_rice.png new file mode 100644 index 0000000000000000000000000000000000000000..3d64c7e25533bf3c6770a941d11118929696800d GIT binary patch literal 325 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}MSxF;E0A8YWXYN}Yqo6JvTfV8 zJ$v@-+qdt~p+iTG965RNC@-W zpTBgTe~DWM4f DHO-t! literal 0 HcmV?d00001 diff --git a/textures/farming_rice_1.png b/textures/farming_rice_1.png new file mode 100644 index 0000000000000000000000000000000000000000..715bb2e6a5b9cfa17e24ca242018d4c9a7b36db9 GIT binary patch literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`mYyz-Ar_~T6C_v{Cy4L_32bnE zYH#?eB%Sk5dIAt60r3fo6qf5pPM_@zHZ-~&<=oi_1dI$p)4A5p;+$#?G=#y^)z4*} HQ$iB}qR1kn literal 0 HcmV?d00001 diff --git a/textures/farming_rice_2.png b/textures/farming_rice_2.png new file mode 100644 index 0000000000000000000000000000000000000000..2662d42bc7f57b4d6b23803fecd613eb2b276c41 GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=6;?qG5~G<5uZpZ#6C6 zWi{o3Uu{RqTc8AENswPKgTu2MX+VyKr;B30O22WQ%mvv4FO#p+1DmVZD literal 0 HcmV?d00001 diff --git a/textures/farming_rice_3.png b/textures/farming_rice_3.png new file mode 100644 index 0000000000000000000000000000000000000000..fee87b216a05185646167dd51a675297d624695d GIT binary patch literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=2~Ab*opp*01yE+Z8r# zU(D)r6{|1g9AV2i43uLm3GxeOaCmkj4ajl!ba4#fkWEflU}wM}sd?bQsRsuRoKO%r zaDXpmg8>Hv=QIY^vbF{$HgPdl=4lMzopr0CX@i)c^nh literal 0 HcmV?d00001 diff --git a/textures/farming_rice_4.png b/textures/farming_rice_4.png new file mode 100644 index 0000000000000000000000000000000000000000..97b026f6c2be918dcd3b5441a69023e349a43e4c GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=6W=O!DVhRIGDp-5A)t zHFU3 zU(Jv+>p=ZfN4JIk1}}oQH1sZsnUyeozX%(v)YJtRguWlhIGC%cF0XfaL(jSFV7bDA iu$A7{vorOQ*U4AQ^SXRrJKYv&FoUP7pUXO@geCxA%|e&} literal 0 HcmV?d00001 diff --git a/textures/farming_rice_5.png b/textures/farming_rice_5.png new file mode 100644 index 0000000000000000000000000000000000000000..c249851ccc34cfe343b1c8de79474da095050ba3 GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=5lI_OVkPllz@Br?}-V z_Agl;TD?5FepN!>w!F!^ibP0l+XkKve-^a literal 0 HcmV?d00001 diff --git a/textures/farming_rice_6.png b/textures/farming_rice_6.png new file mode 100644 index 0000000000000000000000000000000000000000..c0e7233a5d923b7691fdb37ed78fe9af60faa358 GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!S%6Q7E09i@V3R)CzHo_8`Rc&N z6;Ung;`(-FO*j}nac}yhB@L5z$@0_;o@YF3wmh8^t6$a{LED7=p zW^j0RBMr#O^>lFzk&s+_u(Pp6L4TJ`-g6we6`atLYmEgT#nj44Lj2zsJVKIm!|1g#i!Sd?%bNBwsech($eQo r^{)2Et&)$;ud;UEe=hCI>i>*BibP0l+XkK1Rr7K literal 0 HcmV?d00001 diff --git a/textures/farming_rice_7.png b/textures/farming_rice_7.png new file mode 100644 index 0000000000000000000000000000000000000000..9d251ee264a45fdd9a70ea58e3b514f85d9991e0 GIT binary patch literal 261 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Wq?nJE0B(#=a9I-DSy3x;R=_E zjgc*z6WeyAbR8`0I-WV{P|@@gWz#Pg@4dR}=-ut7AMCyO^w6#MXKsHzt-N9HA)sc) zk|4ie28U-i(tw;QPZ!4!iSX9$i$aGKcv#F`7qD!3^}l{i`PG-Jc{Uf{^nUPucYK9Z zf3d~mt3DpjXS?(2+)Py literal 0 HcmV?d00001 diff --git a/textures/farming_rice_8.png b/textures/farming_rice_8.png new file mode 100644 index 0000000000000000000000000000000000000000..41b37e03c11d74c7eb2d1ad0a43de0f9bcf54e77 GIT binary patch literal 336 zcmV-W0k8gvP)^zaIHgdu10mTOnIYQdZtQxr%!sg zP<*;TgRftMvtNX;WQ4#}hp%If$Y{aA!NbGD#l^+a($dq@)7IA3+}zyY;NZ^_uJQl? z00DGTPE!Ct=GbNc005XtL_t&-S1pVS5`r)cM4uF;6bM*RK>Tt4OS)m`blz-sH{pfe zj<4el>mhej0~^?(SF%LG(>ymfgw3$*s|Cu7jh~F#uh^!%HkJZgsMRofE=F#d8X7)x zD>i2?9l7DoDR<5XbHzL`5T?o*Nh7_CSjO8sxVgExy1Kf%ySu%;y}rJ_zrVl0z`()5!NS7A!^6YG#KgtL z#m2_Q$H&LW$jHjd%FD~k%*@Qq&CSrz(9_e?)z#J3*4Ee8*Vx$D-rnBg;^O4wgww2>+9_7?CtIC?(XjI@9*&N@bdEV^Yioc^z`-h_4fAm_xJbt z`T6_%`~Lp^|NsAY&-5Yy0004WQchC*o2$l2&4Hz1J#F mUwv8h9e%WG-+7};jPn7f1`M8hjRAuI0000)6~?|*x1%+;=;-L_>FMg~>g((4?Ck9B?(XpL z@bU5S^78WY^Yird^!4@i_V)Jo_xJet`1$$y`uh6({QUj>{r>*`|Ns9r+$stH0004W zQchCo6b8`8dnA!^QF8zPuQX=nv&}j9)!b^lq$Q0M z@rdLMY3pz+oaZ@itL$-6!3MUpbT-3f*hxt?eqoQ38z;paA~#0hl(4Mwx)nxj_~Zaz W*9DoK%SUqn0000l$(7{U>qoN$1N@36!>9-ie2I(}^L zIUTYX1&l-u3jJ~Fo#LDhXVx^#;4~EA5;IU> YW{|qV_2;$c2Q`rCp00i_>zopr0I;S>i2wiq literal 0 HcmV?d00001 diff --git a/textures/farming_rye.png b/textures/farming_rye.png new file mode 100644 index 0000000000000000000000000000000000000000..ebc5b3795d94b2a8b2ab13316e362c700fee6393 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!Q-Dv1E0A8hAbaiFl^Yi4ZCqNs zWmV1g6^T37r0-mtyK`gbu3g*qY_8b5rFH-I?n684j_qwazJKzWBRv-`oV#>-$<=dn zpFe-vHo5Ew&=kg!AirP+hi5m^fSfo_7sn6@$)yJagzopr0Oa0f`Tzg` literal 0 HcmV?d00001 diff --git a/textures/farming_rye_1.png b/textures/farming_rye_1.png new file mode 100644 index 0000000000000000000000000000000000000000..932b6212a4d9232e8c6206029a74976bd5fe7bc7 GIT binary patch literal 114 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`mYyz-Ar_~T6C_v{Cy4L_U8q)g zU~l;9Q@Pat^aLPC0^%9v3e4*|Cp$7MPfFQlw_B4L1Q@Oh^L%S_pJ5F&gu&C*&t;uc GLK6Ukl_1an literal 0 HcmV?d00001 diff --git a/textures/farming_rye_2.png b/textures/farming_rye_2.png new file mode 100644 index 0000000000000000000000000000000000000000..b6a69b7026dd08788e09fef98dc2dc57c3a6759d GIT binary patch literal 143 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^4e$wZ1=8{B&C7Q9)$I)L+Lbn8 zckc3&^}N4TRs$s%OM?7@862M7NCR>-JY5_^IAoI(7HAtV+*CVo;M9Wy2Tmvm95}$1 mvcZ6ZfpZ!It65tE3xnb^ruBLs{LcdQFnGH9xvXox1bv+$nOm+<|h8B|(0{3=Yq3qyah3o-U3d9J0v?3+xOSBsC8lIQ8JbffEV> z2M(~MY%t(p;GD+5YSz}k!X_@p$~=vMU9`<;8WXD-JG(HOdKfFKC@ZTe!;-0NS2D#G R`vZ+*@O1TaS?83{1ONq)G1UM7 literal 0 HcmV?d00001 diff --git a/textures/farming_rye_4.png b/textures/farming_rye_4.png new file mode 100644 index 0000000000000000000000000000000000000000..ea1246eff5cda20eadde4180ed3e9801b2f11444 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa3-AeX1=39$qPjOEOx{v7drRGd z?TxDr_HH;janJeL`!6g}(Qvo|RKZvh|zL-q3R{J6Nu; jAZ(?#_3TW&gTe~DWM4fM$kk* literal 0 HcmV?d00001 diff --git a/textures/farming_rye_5.png b/textures/farming_rye_5.png new file mode 100644 index 0000000000000000000000000000000000000000..b359673cd85630541a06c28b1d09f0a35f365eee GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv5AX?b1=5`><9pYnOk9~fbydcU z4P|pT)hyW9xMWMq`h62NADnvd?EJ$QR%E1ZS^`wcSQ6wH%;50sMjDWl;OXKR!XZ2N z;6lL`0}W#(g zwp4A{*tmIH%bo*$`}R#ZaH!|dp(%$CHCF9sod8tISQ6wH%;50sMjDV);_2cT!XcZS zpui+yU|?(@Vz9x`fYDPSxUq3|BGZJ$8yXwi)0vFbn-8(H&7C7HR3TwDCvC>bnE?lO zCOWAdmO97EX(Ox_V&wDK&*OxT$BD#(=ROe%ksBOlB`T#mH7#*y;&5gOck1F2Ftpgz gF>MRilr0Pl+k+&(S}gf~4ro7vr>mdKI;Vst0HFy~m;e9( literal 0 HcmV?d00001 diff --git a/textures/farming_rye_7.png b/textures/farming_rye_7.png new file mode 100644 index 0000000000000000000000000000000000000000..fc78198cd4a986b7f759ae3b45d555f78bf4b4b0 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPHF3h)VW1=7p6B`n{Tv~E|~rrot$ zcBb##+r0Zw+rE<%_aEsxe75_@sR<{}O*wac@_IAfr$E(=B|(0{3=Yq3qyafio-U3d z9J0Cx7xEr*kZ61OeP2)%%Sn4CW&;;?hbxl>ZY+>$cPm)8O}b!FMA7R9dZsLw4}YmV z;-qsWs40D^c=@TmX00-Z+b451uTS_g@2$qJy+X}r4Q)*>s;K%%i(9rDyquQVWa=NQ zXmn)#FQ35etuH@IzZH6;^L*3S8R6%qu0MNQUb$NJcc9q3??Bfuc)I$ztaD0e0sv?a BYfb(|n zb+f2jv#DdVs&}-eR<^5hxvposrB}eQYRJBPK12)K00001bW%=J06^y0W&i*HkV!;A zR2Ww+i~$mZAP@t$fK@44#jB{;2+U5B3rCO6g|}md=Pj>Lh6Z-)ryC;Cd~O~H z&9LTQqnBgD6wJOwu`wHG#LlZ>jC4lZIR