From e41b31fccce8fd1e005f259ed4f98aa557fecc38 Mon Sep 17 00:00:00 2001 From: StochasticMouse Date: Thu, 10 Oct 2024 16:18:11 +0200 Subject: [PATCH] added a bunch of bees --- forestry_bees/bee_drops.lua | 27 +++- forestry_bees/bee_genes.lua | 33 +++- forestry_bees/mutations.lua | 21 ++- forestry_bees/register.lua | 153 +++++++++++++++++- .../forestry_bees_marshy_beehive_side.png | Bin 0 -> 445 bytes .../forestry_bees_marshy_beehive_top.png | Bin 0 -> 435 bytes .../forestry_bees_modest_beehive_side.png | Bin 0 -> 401 bytes .../forestry_bees_modest_beehive_top.png | Bin 0 -> 429 bytes .../forestry_bees_tropical_beehive_side.png | Bin 0 -> 341 bytes .../forestry_bees_tropical_beehive_top.png | Bin 0 -> 459 bytes .../forestry_bees_wintry_beehive_side.png | Bin 0 -> 423 bytes .../forestry_bees_wintry_beehive_top.png | Bin 0 -> 402 bytes forestry_bees/textures/items/pollen.0.png | Bin 0 -> 163 bytes forestry_bees/textures/items/pollen.1.png | Bin 0 -> 207 bytes forestry_bees/textures/items/royal_jelly.png | Bin 0 -> 234 bytes 15 files changed, 221 insertions(+), 13 deletions(-) create mode 100644 forestry_bees/textures/beehives/forestry_bees_marshy_beehive_side.png create mode 100644 forestry_bees/textures/beehives/forestry_bees_marshy_beehive_top.png create mode 100644 forestry_bees/textures/beehives/forestry_bees_modest_beehive_side.png create mode 100644 forestry_bees/textures/beehives/forestry_bees_modest_beehive_top.png create mode 100644 forestry_bees/textures/beehives/forestry_bees_tropical_beehive_side.png create mode 100644 forestry_bees/textures/beehives/forestry_bees_tropical_beehive_top.png create mode 100644 forestry_bees/textures/beehives/forestry_bees_wintry_beehive_side.png create mode 100644 forestry_bees/textures/beehives/forestry_bees_wintry_beehive_top.png create mode 100644 forestry_bees/textures/items/pollen.0.png create mode 100644 forestry_bees/textures/items/pollen.1.png create mode 100644 forestry_bees/textures/items/royal_jelly.png diff --git a/forestry_bees/bee_drops.lua b/forestry_bees/bee_drops.lua index ee798d2..5b5ca5d 100644 --- a/forestry_bees/bee_drops.lua +++ b/forestry_bees/bee_drops.lua @@ -7,9 +7,32 @@ local function register_drop(bee_type, drop_name, basechance) forestry_bees.bee_drops[bee_type][drop_name] = basechance end +--mundane branch register_drop("forest", "forestry_bees:honey_comb", 0.3) -register_drop("meadow", "forestry_bees:honey_comb", 0.3) +register_drop("meadows", "forestry_bees:honey_comb", 0.3) +register_drop("modest", "forestry_bees:parched_comb", 0.3) +register_drop("tropical", "forestry_bees:silky_comb", 0.3) +register_drop("wintry", "forestry_bees:frozen_comb", 0.3) +register_drop("marshy", "forestry_bees:mossy_comb", 0.3) +--common branch register_drop("common", "forestry_bees:honey_comb", 0.35) register_drop("cultivated", "forestry_bees:honey_comb", 0.4) +--noble branch register_drop("noble", "forestry_bees:dripping_comb", 0.2) -register_drop("diligent", "forestry_bees:stringy_comb", 0.2) \ No newline at end of file +register_drop("majestic", "forestry_bees:dripping_comb", 0.2) +register_drop("imperial", "forestry_bees:dripping_comb", 0.2) +register_drop("imperial", "forestry_bees:royal_jelly", 0.2) +--industrious branch +register_drop("diligent", "forestry_bees:stringy_comb", 0.2) +register_drop("unweary", "forestry_bees:stringy_comb", 0.2) +register_drop("industrious", "forestry_bees:stringy_comb", 0.2) +register_drop("industrious", "forestry_bees:pollen_cluster", 0.2) +---heroic branch +---infernal branch +--- austere branch +---end branch +---tropical branch +---frozen branch +---festive branch +--agrarian branch +register_drop("rural", "forestry_bees:wheaten_comb", 0.3) \ No newline at end of file diff --git a/forestry_bees/bee_genes.lua b/forestry_bees/bee_genes.lua index 728b775..d8f7fa5 100644 --- a/forestry_bees/bee_genes.lua +++ b/forestry_bees/bee_genes.lua @@ -23,9 +23,34 @@ end function forestry_bees.return_genes(bee_type) return forestry_bees.bee_base_genes[bee_type] end -register_base_gene("forest",{production = 0.3, fertility = 3, lifespan = 10, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) -register_base_gene("meadow",{production = 0.3, fertility = 2, lifespan = 10, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) -register_base_gene("common",{production = 0.6, fertility = 2, lifespan = 10, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) + +--based on +--https://docs.google.com/spreadsheets/d/1_moZHLnL35_u-bJ7kFDxWDxY9OuMWK_4l0EB4wIx0_s/edit?f=true&noheader=false&gid=1#gid=1 + +--mundane branch +register_base_gene("forest",{production = 0.3, fertility = 3, lifespan = 20, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +register_base_gene("meadows",{production = 0.3, fertility = 2, lifespan = 20, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +register_base_gene("modest",{production = 0.6, fertility = 2, lifespan = 30, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +register_base_gene("tropical",{production = 0.6, fertility = 2, lifespan = 30, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +register_base_gene("wintry",{production = 0.6, fertility = 4, lifespan = 30, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +register_base_gene("marshy",{production = 0.3, fertility = 2, lifespan = 10, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +--common branch +register_base_gene("common",{production = 0.6, fertility = 2, lifespan = 20, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) register_base_gene("cultivated",{production = 1.2, fertility = 2, lifespan = 10, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +--noble branch register_base_gene("noble",{production = 0.6, fertility = 2, lifespan = 30, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) -register_base_gene("diligent",{production = 0.6, fertility = 2, lifespan = 30, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) \ No newline at end of file +register_base_gene("majestic",{production = 1, fertility = 4, lifespan = 35, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +register_base_gene("imperial",{production = 0.6, fertility = 2, lifespan = 40, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +--industrious branch +register_base_gene("diligent",{production = 0.6, fertility = 2, lifespan = 30, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +register_base_gene("unweary",{production = 1, fertility = 2, lifespan = 35, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +register_base_gene("indostrious",{production = 0.6, fertility = 2, lifespan = 40, nocturnal = false, cave = false, flyer = false, flower = "flowers"}) +---heroic branch +---infernal branch +--- austere branch +---end branch +---tropical branch +---frozen branch +---festive branch +--agrarian branch +register_base_gene("rural",{production = 0.6, fertility = 2, lifespan = 10, nocturnal = false, cave = false, flyer = false, flower = "wheat"}) \ No newline at end of file diff --git a/forestry_bees/mutations.lua b/forestry_bees/mutations.lua index 8db0d79..6724ff8 100644 --- a/forestry_bees/mutations.lua +++ b/forestry_bees/mutations.lua @@ -27,10 +27,27 @@ local function register_mutation(bee_type_in1,bee_type_in2,bee_type_out,chance) forestry_bees.bee_mutations[bee_type_in2][bee_type_in1][bee_type_out] = chance end -register_mutation("forest","meadow","common",0.15) +--common branch +register_mutation("forest","meadows","common",0.15) register_mutation("forest","common","cultivated",0.12) -register_mutation("meadow","common","cultivated",0.12) +register_mutation("meadows","common","cultivated",0.12) +--noble branch register_mutation("common","cultivated","noble",0.10) +register_mutation("noble","cultivated","majestic",0.08) +register_mutation("noble","majestic","imperial",0.08) +--industrious branch register_mutation("common","cultivated","diligent",0.10) +register_mutation("diligent","cultivated","unweary",0.08) +register_mutation("diligent","unweary","industrious",0.08) +---heroic branch +---infernal branch +--- austere branch +---end branch +---tropical branch +---frozen branch +---festive branch +--agrarian branch +register_mutation("diligent","meadows","rural",0.12) --ATTENTION WE SHOULD RESTRICT THIS TO THE PLAINS BIOME + --print(forestry_bees.mutations["meadows"]["forest"]["common"]) diff --git a/forestry_bees/register.lua b/forestry_bees/register.lua index a6495f0..328ff4c 100644 --- a/forestry_bees/register.lua +++ b/forestry_bees/register.lua @@ -78,13 +78,102 @@ minetest.register_node("forestry_bees:meadow_beehive", { drop = { max_items = 3, items = { - {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("princess", forestry_bees.return_all_genes_double("meadow"))}}, - {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("drone", forestry_bees.return_all_genes_double("meadow"))}}, + {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("princess", forestry_bees.return_all_genes_double("meadows"))}}, + {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("drone", forestry_bees.return_all_genes_double("meadows"))}}, {tool_groups = {"scoop_tool"}, rarity = 2, items = {"forestry_bees:honey_comb"}} } } }) +minetest.register_node("forestry_bees:modest_beehive", { + description = "Modest Beehive", + tiles = { + "forestry_bees_modest_beehive_top.png", + "forestry_bees_modest_beehive_top.png", + "forestry_bees_modest_beehive_side.png", + "forestry_bees_modest_beehive_side.png", + "forestry_bees_modest_beehive_side.png", + "forestry_bees_modest_beehive_side.png", + }, + groups = {scoopy = 1}, + diggable = true, + drop = { + max_items = 3, + items = { + {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("princess", forestry_bees.return_all_genes_double("modest"))}}, + {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("drone", forestry_bees.return_all_genes_double("modest"))}}, + {tool_groups = {"scoop_tool"}, rarity = 2, items = {"forestry_bees:parched_comb"}} + } + } +}) + +minetest.register_node("forestry_bees:tropical_beehive", { + description = "Tropical Beehive", + tiles = { + "forestry_bees_tropical_beehive_top.png", + "forestry_bees_tropical_beehive_top.png", + "forestry_bees_tropical_beehive_side.png", + "forestry_bees_tropical_beehive_side.png", + "forestry_bees_tropical_beehive_side.png", + "forestry_bees_tropical_beehive_side.png", + }, + groups = {scoopy = 1}, + diggable = true, + drop = { + max_items = 3, + items = { + {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("princess", forestry_bees.return_all_genes_double("tropical"))}}, + {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("drone", forestry_bees.return_all_genes_double("tropical"))}}, + {tool_groups = {"scoop_tool"}, rarity = 2, items = {"forestry_bees:silky_comb"}} + } + } +}) + +minetest.register_node("forestry_bees:wintry_beehive", { + description = "Wintry Beehive", + tiles = { + "forestry_bees_wintry_beehive_top.png", + "forestry_bees_wintry_beehive_top.png", + "forestry_bees_wintry_beehive_side.png", + "forestry_bees_wintry_beehive_side.png", + "forestry_bees_wintry_beehive_side.png", + "forestry_bees_wintry_beehive_side.png", + }, + groups = {scoopy = 1}, + diggable = true, + drop = { + max_items = 3, + items = { + {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("princess", forestry_bees.return_all_genes_double("wintry"))}}, + {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("drone", forestry_bees.return_all_genes_double("wintry"))}}, + {tool_groups = {"scoop_tool"}, rarity = 2, items = {"forestry_bees:frozen_comb"}} + } + } +}) + +minetest.register_node("forestry_bees:marshy_beehive", { + description = "Marshy Beehive", + tiles = { + "forestry_bees_marshy_beehive_top.png", + "forestry_bees_marshy_beehive_top.png", + "forestry_bees_marshy_beehive_side.png", + "forestry_bees_marshy_beehive_side.png", + "forestry_bees_marshy_beehive_side.png", + "forestry_bees_marshy_beehive_side.png", + }, + groups = {scoopy = 1}, + diggable = true, + drop = { + max_items = 3, + items = { + {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("princess", forestry_bees.return_all_genes_double("marshy"))}}, + {tool_groups = {"scoop_tool"}, rarity = 2, items = {forestry_bees.Bee("drone", forestry_bees.return_all_genes_double("marshy"))}}, + {tool_groups = {"scoop_tool"}, rarity = 2, items = {"forestry_bees:mossy_comb"}} + } + } +}) + + minetest.register_tool("forestry_bees:scoop", { description = "Scoop", inventory_image = "forestry_bees_scoop.png", @@ -101,20 +190,59 @@ minetest.register_tool("forestry_bees:scoop", { }, }, }) - +--mundane branch register_bee("forest","#ffdc16","#19d0ec") -register_bee("meadow","#ffdc16","#ef131e") +register_bee("meadows","#ffdc16","#ef131e") +register_bee("modest","#ffdc16","#c5be86") +register_bee("tropical","#ffdc16","#378020") +register_bee("wintry","#ffdc16","#a0ffc8") +register_bee("marshy","#ffdc16","#546626") +--common branch register_bee("common","#ffdc16","#b2b2b2") register_bee("cultivated","#ffdc16","#5734ec") +--noble branch register_bee("noble","#ffdc16","#ec9a19") +register_bee("majestic","#ffdc16","#7f0000") +register_bee("imperial","#ffdc16","#a3e02f") +--industrious branch register_bee("diligent","#ffdc16","#c219ec") - +register_bee("unweary","#ffdc16","#19ec5a") +register_bee("industrious","#ffdc16","#ffffff") +---heroic branch +---infernal branch +--- austere branch +---end branch +---tropical branch +---frozen branch +---festive branch +--agrarian branch +register_bee("rural","#ffdc16","#feff8f") minetest.register_craftitem("forestry_bees:honey_comb", { description = "Honey Comb", groups = {comb = 1}, inventory_image = "(bee_combs.0.png^[colorize:#ffa12b:155)^(bee_combs.1.png^[colorize:#e8d56a:255)" }) +minetest.register_craftitem("forestry_bees:parched_comb", { + description = "Parched Comb", + groups = {comb = 1}, + inventory_image = "(bee_combs.0.png^[colorize:#ffff00:155)^(bee_combs.1.png^[colorize:#dcbe13:255)" +}) +minetest.register_craftitem("forestry_bees:silky_comb", { + description = "Silky Comb", + groups = {comb = 1}, + inventory_image = "(bee_combs.0.png^[colorize:#ddff00:155)^(bee_combs.1.png^[colorize:#508907:255)" +}) +minetest.register_craftitem("forestry_bees:frozen_comb", { + description = "Frozen Comb", + groups = {comb = 1}, + inventory_image = "(bee_combs.0.png^[colorize:#a0ffff:155)^(bee_combs.1.png^[colorize:#f9ffff:255)" +}) +minetest.register_craftitem("forestry_bees:mossy_comb", { + description = "Mossy Comb", + groups = {comb = 1}, + inventory_image = "(bee_combs.0.png^[colorize:#7e9939:155)^(bee_combs.1.png^[colorize:#2a3313:255)" +}) minetest.register_craftitem("forestry_bees:dripping_comb", { description = "Dripping Comb", groups = {comb = 1}, @@ -125,3 +253,18 @@ minetest.register_craftitem("forestry_bees:stringy_comb", { groups = {comb = 1}, inventory_image = "(bee_combs.0.png^[colorize:#bda93e:155)^(bee_combs.1.png^[colorize:#c8be67:255)" }) +minetest.register_craftitem("forestry_bees:wheaten_comb", { + description = "Wheaten Comb", + groups = {comb = 1}, + inventory_image = "(bee_combs.0.png^[colorize:#ffffff:155)^(bee_combs.1.png^[colorize:#feff8f:255)" +}) +minetest.register_craftitem("forestry_bees:royal_jelly", { + description = "Royal Jelly", + groups = {comb = 1}, + inventory_image = "royal_jelly.png" +}) +minetest.register_craftitem("forestry_bees:pollen_cluster", { + description = "Pollen Cluster", + groups = {comb = 1}, + inventory_image = "(pollen.0.png^[colorize:#a28a25:155)^(pollen.1.png^[colorize:#a28a25:255)" +}) diff --git a/forestry_bees/textures/beehives/forestry_bees_marshy_beehive_side.png b/forestry_bees/textures/beehives/forestry_bees_marshy_beehive_side.png new file mode 100644 index 0000000000000000000000000000000000000000..7596f40cbc1a8413ca9cab6b1e9e318919c4bc26 GIT binary patch literal 445 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbMfu>hYC*N`+d?^t=K5J_1TZe?wL zYadacI0Y?ZVR1Q*z+@HIaB1IoMdwf{moO-T(->9#4fez!L<dqFE z30-$qI<};$21iT?i<@!!`u0~z>;5FhC@Bd&4xSZM>gL@0se8qa^(mV^<<|WOH(79) l`Jun+m5tAjZvEFJWxlS2H&e!WcRkSc44$rjF6*2UngB?zh<5-0 literal 0 HcmV?d00001 diff --git a/forestry_bees/textures/beehives/forestry_bees_marshy_beehive_top.png b/forestry_bees/textures/beehives/forestry_bees_marshy_beehive_top.png new file mode 100644 index 0000000000000000000000000000000000000000..234e4d413db39bc66cc626d13d77b6be14861bf4 GIT binary patch literal 435 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbMffdHQnSI=lU?^t=K5J_ciesMVt zSru-dI0Y+j5$8}TmoO5w!vYhO`G1umB`X^$vbMNMA!NLgDyajzITIW=Ar zR{{G#aUlsdw+LzHP#}_&SL5}HkylXXwe}H_RN!a}AeK(BN0m5zsOg4oXpR zi;z*$-azBTw&WTmYSLeo> zu==HVtt=|deE!bo=G1cstlV2m6uS*4E|XGD@Qa$abKl*!%azi2)i<4aw6ZfGC*108 zoZv<7-hjysDxL<@%o+|Holt3#mgeG?v7`URj2$19E^J&sdw+$?o63KO8Y&ki+?#*@ ak+}6|ZmZYxPHqCaoWax8&t;ucLK6UQtcR!o literal 0 HcmV?d00001 diff --git a/forestry_bees/textures/beehives/forestry_bees_modest_beehive_side.png b/forestry_bees/textures/beehives/forestry_bees_modest_beehive_side.png new file mode 100644 index 0000000000000000000000000000000000000000..8ae20b1b7b3bb3d15763a82225d5256313b94d52 GIT binary patch literal 401 zcmV;C0dD?@P)4M zs|Q?82Hd_A%Af>JKm(nD1!`Oh%c2E9GXc`92-B?z(WnO(7Xqk`3E8<1+q@FXp#;vS z2i3C+$({sHK?6iK0yHQA(ya(%RS46r3DvO*)vpUrK?G7n1XxN2NIL}9vI@|u2iC6& z)v^mvLIqVv1V%Xn85slFxDFs71REO!R!9cYt_jq#3e>R))UgWLw-3&x1 zrv}xp3fQ*|*s=`QvkbhFTzdcj0G>%iK~#8NJ&ncEgkTH=C;0?t-QE3neg7BR0Sfw% zLsusOV2ru!($IFK0IESSQFn@>$Q1xB(?%?zwN^+Mqz7q4AF4V~SFa35AY&FO6G^6G zL1w%`V$6ktD+|>n^ObU}K@x1r0GwNjKVA{<_Y?#NcjO}?zD!*HXITnoSqWZH2TD8yK{NqhQ3u$#4%M*= zLNx(RKLkZL14}&vP(lRNu?y6&3D~v`S4jqARR~&421+~wQ$++uI0DnI3B{KK(WnPA zCjio}2*s8I%%TR)r3FGY0!cdqPeBCPxDL*z2hF7h;gcO(0001}Nklzlm01Z?aF@j3ARD<}C4 X?jH(Zx6P!@00000NkvXXu0mjf5S*xk literal 0 HcmV?d00001 diff --git a/forestry_bees/textures/beehives/forestry_bees_tropical_beehive_side.png b/forestry_bees/textures/beehives/forestry_bees_tropical_beehive_side.png new file mode 100644 index 0000000000000000000000000000000000000000..e1ca0edb6a9b4ae1f8536200a0f68872f1381f4c GIT binary patch literal 341 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbK}dw@@fYgw9_sv>7@tbDw`SVn}5 zqAYuAs8p1faAu^ejs}mR4u7<_h?y>LoS&Gpl}J{UoSG7siV9m^oPwo^a6*8%p)S9r z0l$U{Z*s6?e!OB@n6$Dyr<4@4oE%G9n2fF_Z;X#ok*6*_DnaNvTfv&5-0cYe=b|N6$u z-&cAV_8B!?RP0u3j%1s}aNv~qx!!}$i?3#O99EilY{rH+tDTg@r@zwh6cnHQcdnt1 z9$(ohoid)!lcw{ooq2eZqt5o-R_CLSY`7sDc(>FvHX?IJ5ZAP+dfRPwDsSVT@VtA{ lc8w1oUYdScaH9G@bA}MdK{ejrl|V-^c)I$ztaD0e0sw0)Z%F_E literal 0 HcmV?d00001 diff --git a/forestry_bees/textures/beehives/forestry_bees_tropical_beehive_top.png b/forestry_bees/textures/beehives/forestry_bees_tropical_beehive_top.png new file mode 100644 index 0000000000000000000000000000000000000000..4de797961dfce2d52ee45913a01fc4b998fb8d62 GIT binary patch literal 459 zcmV;+0W|)JP)S4{>248y5v*QyN)G6I)9Y zBOeGN9tS2O3SUnbPCgA&Ll0zB86+SHQ9%zF6$C3M3??E8a$+N5QW+l{2Pq{BZeAdC zWF=Zk6_vi9{I;D@x|D$lEbeJfWA49>tMSqA_B002ovPDHLkV1ia# Blf(c3 literal 0 HcmV?d00001 diff --git a/forestry_bees/textures/beehives/forestry_bees_wintry_beehive_side.png b/forestry_bees/textures/beehives/forestry_bees_wintry_beehive_side.png new file mode 100644 index 0000000000000000000000000000000000000000..26af3b461c93b44abaa2bf50cb6d23f4cdffdbda GIT binary patch literal 423 zcmV;Y0a*TtP)i_@j z|NrU#|F!n^tM&Eh|Nrg(|L_0*>;M1e|NrCv|K0!p=l}n<_xHZ{_wN7ysP*;Y|NrFw z|GD?~wfFb2_xIob|FQP=zT)Dq_V%Ln^|SW&p!M~h^Yfwg^}F}?y7%|x|NpM_^}qP| zy!ZFG`1rr~_ow&wrS6XtSnl|{Lgcn_4T^<_rv)3qW1Qo^z^3n^{Dmr zxc2tJ_xIud|CRFc;Q#-$_xGyz_vQcpy!ZE|^Yf$h^sn~zqx18+`1rf`_pJ8zQ%djc z00027NklOV07*qoM6N<$f+gzjD*ylh literal 0 HcmV?d00001 diff --git a/forestry_bees/textures/items/pollen.0.png b/forestry_bees/textures/items/pollen.0.png new file mode 100644 index 0000000000000000000000000000000000000000..d3540914f6d8872d9163b6ec2e85db8d8793414d GIT binary patch literal 163 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPE^3h)VW&9<+ z1{fR;J$Zrij6o1*P}>T_pr%!ZKv@>&-i17=bHW@L7_OIab$)VlI|4G#)78&qol`;+ E05QllN&o-= literal 0 HcmV?d00001 diff --git a/forestry_bees/textures/items/pollen.1.png b/forestry_bees/textures/items/pollen.1.png new file mode 100644 index 0000000000000000000000000000000000000000..834e35990170630537c1f93bb2b68d38dacba29d GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFv4DbnY1=7L642!x{D>Gy+U1Df! zWBC7{VfJi>zopr08vRks{jB1 literal 0 HcmV?d00001 diff --git a/forestry_bees/textures/items/royal_jelly.png b/forestry_bees/textures/items/royal_jelly.png new file mode 100644 index 0000000000000000000000000000000000000000..c66cad5535460f983c5ae528ab9b8d495d48ddf7 GIT binary patch literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbL!cYsfbE0C_NWbpJ9*_ zQ~3XX?&HU&Y}-}}6uDh043Yi+AE-vSx|#(jcx4ak^(nl!&M^Vi-`T-_?;b-%1;hXU z-HbWA#ev3gmjwBNj0XaC9^QZdHuAXY0NKu-E{-7;acfVQi#0fKummJrw@C2&Zol&F zgRkfYR P2awsGu6{1-oD!M<-h)rF literal 0 HcmV?d00001