1
0
Fork 0

rename texture of mcl_farming and mcl_mushrooms

This commit is contained in:
Araca 2023-11-02 18:03:31 +01:00
parent 35bb569ee1
commit c8ea6baca3
41 changed files with 94 additions and 94 deletions

View File

@ -44,12 +44,12 @@ mcl_mobs.register_mob("mobs_mc:snowman", {
},
textures = {
"mobs_mc_snowman.png", --snowman texture
"farming_pumpkin_side.png", --top
"farming_pumpkin_top.png", --down
"farming_pumpkin_face.png", --front
"farming_pumpkin_side.png", --left
"farming_pumpkin_side.png", --right
"farming_pumpkin_top.png", --left
"mcl_farming_pumpkin_side.png", --top
"mcl_farming_pumpkin_top.png", --down
"mcl_farming_pumpkin_face.png", --front
"mcl_farming_pumpkin_side.png", --left
"mcl_farming_pumpkin_side.png", --right
"mcl_farming_pumpkin_top.png", --left
},
gotten_texture = gotten_texture,
drops = {{ name = "mcl_throwing:snowball", chance = 1, min = 0, max = 15 }},

View File

@ -46,7 +46,7 @@ awards.register_achievement("mcl:buildFurnace", {
awards.register_achievement("mcl:buildHoe", {
title = S("Time to Farm!"),
description = S("Use a crafting table to craft a wooden hoe from wooden planks and sticks."),
icon = "farming_tool_woodhoe.png",
icon = "mcl_farming_tool_woodhoe.png",
trigger = {
type = "craft",
item = "mcl_farming:hoe_wood",
@ -58,7 +58,7 @@ awards.register_achievement("mcl:buildHoe", {
awards.register_achievement("mcl:makeBread", {
title = S("Bake Bread"),
description = S("Use wheat to craft a bread."),
icon = "farming_bread.png",
icon = "mcl_farming_bread.png",
trigger = {
type = "craft",
item = "mcl_farming:bread",
@ -348,7 +348,7 @@ awards.register_achievement("mcl:countryLode", {
awards.register_achievement("mcl:seriousDedication", {
title = S("Serious Dedication"),
description = S("Use a Netherite Ingot to upgrade a hoe, and then completely reevaluate your life choices."),
icon = "farming_tool_netheritehoe.png",
icon = "mcl_farming_tool_netheritehoe.png",
type = "Challenge",
group = "Husbandry",
})

View File

@ -4,13 +4,13 @@ for i=1, 7 do
local texture, sel_height
if i < 3 then
sel_height = -5/16
texture = "farming_carrot_1.png"
texture = "mcl_farming_carrot_1.png"
elseif i < 5 then
sel_height = -4/16
texture = "farming_carrot_2.png"
texture = "mcl_farming_carrot_2.png"
else
sel_height = -3/16
texture = "farming_carrot_3.png"
texture = "mcl_farming_carrot_3.png"
end
local create, name, longdesc
@ -57,9 +57,9 @@ minetest.register_node("mcl_farming:carrot", {
place_param2 = 3,
walkable = false,
drawtype = "plantlike",
tiles = {"farming_carrot_4.png"},
inventory_image = "farming_carrot_4.png",
wield_image = "farming_carrot_4.png",
tiles = {"mcl_farming_carrot_4.png"},
inventory_image = "mcl_farming_carrot_4.png",
wield_image = "mcl_farming_carrot_4.png",
drop = {
max_items = 1,
items = {
@ -85,7 +85,7 @@ minetest.register_craftitem("mcl_farming:carrot_item", {
_tt_help = S("Grows on farmland"),
_doc_items_longdesc = S("Carrots can be eaten and planted. Pigs and rabbits like carrots."),
_doc_items_usagehelp = S("Hold it in your hand and rightclick to eat it. Place it on top of farmland to plant the carrot. It grows in sunlight and grows faster on hydrated farmland. Rightclick an animal to feed it."),
inventory_image = "farming_carrot.png",
inventory_image = "mcl_farming_carrot.png",
groups = {food = 2, eatable = 3, compostability = 65},
_mcl_saturation = 3.6,
on_secondary_use = minetest.item_eat(3),
@ -95,7 +95,7 @@ minetest.register_craftitem("mcl_farming:carrot_item", {
minetest.register_craftitem("mcl_farming:carrot_item_gold", {
description = S("Golden Carrot"),
_doc_items_longdesc = S("A golden carrot is a precious food item which can be eaten. It is really, really filling!"),
inventory_image = "farming_carrot_gold.png",
inventory_image = "mcl_farming_carrot_gold.png",
on_place = minetest.item_eat(6),
on_secondary_use = minetest.item_eat(6),
groups = { brewitem = 1, food = 2, eatable = 6 },

View File

@ -54,7 +54,7 @@ local uses = {
stone = 132,
iron = 251,
gold = 33,
diamond = 1562,
diamond = 1562,
netherite = 2031,
}
@ -68,7 +68,7 @@ minetest.register_tool("mcl_farming:hoe_wood", {
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
_doc_items_hidden = false,
inventory_image = "farming_tool_woodhoe.png",
inventory_image = "mcl_farming_tool_woodhoe.png",
wield_scale = mcl_vars.tool_wield_scale,
on_place = hoe_on_place_function(uses.wood),
groups = { tool=1, hoe=1, enchantability=15 },
@ -111,7 +111,7 @@ minetest.register_tool("mcl_farming:hoe_stone", {
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.stone),
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
inventory_image = "farming_tool_stonehoe.png",
inventory_image = "mcl_farming_tool_stonehoe.png",
wield_scale = mcl_vars.tool_wield_scale,
on_place = hoe_on_place_function(uses.stone),
groups = { tool=1, hoe=1, enchantability=5 },
@ -149,7 +149,7 @@ minetest.register_tool("mcl_farming:hoe_iron", {
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.iron),
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
inventory_image = "farming_tool_steelhoe.png",
inventory_image = "mcl_farming_tool_steelhoe.png",
wield_scale = mcl_vars.tool_wield_scale,
on_place = hoe_on_place_function(uses.iron),
groups = { tool=1, hoe=1, enchantability=14 },
@ -195,7 +195,7 @@ minetest.register_tool("mcl_farming:hoe_gold", {
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.gold),
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
inventory_image = "farming_tool_goldhoe.png",
inventory_image = "mcl_farming_tool_goldhoe.png",
wield_scale = mcl_vars.tool_wield_scale,
on_place = hoe_on_place_function(uses.gold),
groups = { tool=1, hoe=1, enchantability=22 },
@ -242,7 +242,7 @@ minetest.register_tool("mcl_farming:hoe_diamond", {
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.diamond),
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
inventory_image = "farming_tool_diamondhoe.png",
inventory_image = "mcl_farming_tool_diamondhoe.png",
wield_scale = mcl_vars.tool_wield_scale,
on_place = hoe_on_place_function(uses.diamond),
groups = { tool=1, hoe=1, enchantability=10 },
@ -274,26 +274,26 @@ minetest.register_craft({
{"mcl_core:diamond", "mcl_core:diamond"},
{"mcl_core:stick", ""},
{"mcl_core:stick", ""}
}
})
minetest.register_tool("mcl_farming:hoe_netherite", {
description = S("Netherite Hoe"),
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.netherite),
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
inventory_image = "farming_tool_netheritehoe.png",
wield_scale = mcl_vars.tool_wield_scale,
on_place = hoe_on_place_function(uses.netherite),
groups = { tool=1, hoe=1, enchantability=10, fire_immune=1 },
tool_capabilities = {
full_punch_interval = 0.25,
damage_groups = { fleshy = 4, },
punch_attack_uses = uses.netherite,
},
_repair_material = "mcl_nether:netherite_ingot",
_mcl_toollike_wield = true,
_mcl_diggroups = {
hoey = { speed = 8, level = 5, uses = uses.netherite }
},
})
}
})
minetest.register_tool("mcl_farming:hoe_netherite", {
description = S("Netherite Hoe"),
_tt_help = hoe_tt.."\n"..S("Uses: @1", uses.netherite),
_doc_items_longdesc = hoe_longdesc,
_doc_items_usagehelp = hoe_usagehelp,
inventory_image = "mcl_farming_tool_netheritehoe.png",
wield_scale = mcl_vars.tool_wield_scale,
on_place = hoe_on_place_function(uses.netherite),
groups = { tool=1, hoe=1, enchantability=10, fire_immune=1 },
tool_capabilities = {
full_punch_interval = 0.25,
damage_groups = { fleshy = 4, },
punch_attack_uses = uses.netherite,
},
_repair_material = "mcl_nether:netherite_ingot",
_mcl_toollike_wield = true,
_mcl_diggroups = {
hoey = { speed = 8, level = 5, uses = uses.netherite }
},
})

View File

@ -20,7 +20,7 @@ local melon_base_def = {
description = S("Melon"),
_doc_items_longdesc = S("A melon is a block which can be grown from melon stems, which in turn are grown from melon seeds. It can be harvested for melon slices."),
stack_max = 64,
tiles = {"farming_melon_top.png", "farming_melon_top.png", "farming_melon_side.png", "farming_melon_side.png", "farming_melon_side.png", "farming_melon_side.png"},
tiles = {"mcl_farming_melon_top.png", "mcl_farming_melon_top.png", "mcl_farming_melon_side.png", "mcl_farming_melon_side.png", "mcl_farming_melon_side.png", "mcl_farming_melon_side.png"},
groups = {
handy = 1, axey = 1, plant = 1, building_block = 1, dig_by_piston = 1, dig_immediate_piston = 1,
enderman_takable = 1, compostability = 65
@ -134,7 +134,7 @@ minetest.register_craftitem("mcl_farming:melon_item", {
description = S("Melon Slice"),
_doc_items_longdesc = S("This is a food item which can be eaten."),
stack_max = 64,
inventory_image = "farming_melon.png",
inventory_image = "mcl_farming_melon.png",
on_place = minetest.item_eat(2),
on_secondary_use = minetest.item_eat(2),
groups = {food = 2, eatable = 2, compostability = 50},

View File

@ -90,7 +90,7 @@ minetest.register_craftitem("mcl_farming:potato_item", {
_tt_help = S("Grows on farmland"),
_doc_items_longdesc = S("Potatoes are food items which can be eaten, cooked in the furnace and planted. Pigs like potatoes."),
_doc_items_usagehelp = S("Hold it in your hand and rightclick to eat it. Place it on top of farmland to plant it. It grows in sunlight and grows faster on hydrated farmland. Rightclick an animal to feed it."),
inventory_image = "farming_potato.png",
inventory_image = "mcl_farming_potato.png",
groups = {food = 2, eatable = 1, compostability = 65, smoker_cookable = 1},
_mcl_saturation = 0.6,
stack_max = 64,
@ -102,7 +102,7 @@ minetest.register_craftitem("mcl_farming:potato_item_baked", {
description = S("Baked Potato"),
_doc_items_longdesc = S("Baked potatoes are food items which are more filling than the unbaked ones."),
stack_max = 64,
inventory_image = "farming_potato_baked.png",
inventory_image = "mcl_farming_potato_baked.png",
on_place = minetest.item_eat(5),
on_secondary_use = minetest.item_eat(5),
groups = {food = 2, eatable = 5, compostability = 85},
@ -114,7 +114,7 @@ minetest.register_craftitem("mcl_farming:potato_item_poison", {
_tt_help = minetest.colorize(mcl_colors.YELLOW, S("60% chance of poisoning")),
_doc_items_longdesc = S("This potato doesn't look too healthy. You can eat it to restore hunger points, but there's a 60% chance it will poison you briefly."),
stack_max = 64,
inventory_image = "farming_potato_poison.png",
inventory_image = "mcl_farming_potato_poison.png",
on_place = minetest.item_eat(2),
on_secondary_use = minetest.item_eat(2),
groups = { food = 2, eatable = 2 },

View File

@ -98,7 +98,7 @@ local pumpkin_base_def = {
_doc_items_usagehelp = S("To carve a face into the pumpkin, use the shears on the side you want to carve."),
stack_max = 64,
paramtype2 = "facedir",
tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png"},
tiles = {"mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_side.png"},
groups = {
handy = 1, axey = 1, plant = 1, building_block = 1, dig_by_piston = 1, dig_immediate_piston = 1,
enderman_takable = 1, compostability = 65
@ -113,7 +113,7 @@ local pumpkin_face_base_def = table.copy(pumpkin_base_def)
pumpkin_face_base_def.description = S("Pumpkin")
pumpkin_face_base_def._doc_items_longdesc = S("A pumpkin can be worn as a helmet. Pumpkins grow from pumpkin stems, which in turn grow from pumpkin seeds.")
pumpkin_face_base_def._doc_items_usagehelp = nil
pumpkin_face_base_def.tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_face.png"}
pumpkin_face_base_def.tiles = {"mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_face.png"}
pumpkin_face_base_def.groups.armor=1
pumpkin_face_base_def.groups.non_combat_armor=1
pumpkin_face_base_def.groups.armor_head=1
@ -198,7 +198,7 @@ minetest.register_node("mcl_farming:pumpkin_face_light", {
paramtype = "light",
paramtype2 = "facedir",
light_source = minetest.LIGHT_MAX,
tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_face_light.png"},
tiles = {"mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_top.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_side.png", "mcl_farming_pumpkin_face_light.png"},
groups = {handy=1,axey=1, building_block=1, dig_by_piston=1 },
sounds = mcl_sounds.node_sound_wood_defaults(),
on_construct = function(pos)

View File

@ -97,7 +97,7 @@ minetest.register_craftitem("mcl_farming:wheat_item", {
description = S("Wheat"),
_doc_items_longdesc = S("Wheat is used in crafting. Some animals like wheat."),
_doc_items_usagehelp = S("Use the “Place” key on an animal to try to feed it wheat."),
inventory_image = "farming_wheat_harvested.png",
inventory_image = "mcl_farming_wheat_harvested.png",
groups = {craftitem = 1, compostability = 65},
})
@ -118,7 +118,7 @@ minetest.register_craft({
minetest.register_craftitem("mcl_farming:cookie", {
description = S("Cookie"),
_doc_items_longdesc = S("This is a food item which can be eaten."),
inventory_image = "farming_cookie.png",
inventory_image = "mcl_farming_cookie.png",
groups = {food = 2, eatable = 2, compostability = 85},
_mcl_saturation = 0.4,
on_place = minetest.item_eat(2),
@ -129,7 +129,7 @@ minetest.register_craftitem("mcl_farming:cookie", {
minetest.register_craftitem("mcl_farming:bread", {
description = S("Bread"),
_doc_items_longdesc = S("This is a food item which can be eaten."),
inventory_image = "farming_bread.png",
inventory_image = "mcl_farming_bread.png",
groups = {food = 2, eatable = 5, compostability = 85},
_mcl_saturation = 6.0,
on_place = minetest.item_eat(5),

View File

@ -159,13 +159,13 @@ mcl_flowerpots.register_potted_cube("mcl_core:cactus", {
mcl_flowerpots.register_potted_flower("mcl_mushrooms:mushroom_brown", {
name = "mushroom_brown",
desc = S("Brown Mushroom"),
image = "farming_mushroom_brown.png",
image = "mcl_mushrooms_mushroom_brown.png",
})
mcl_flowerpots.register_potted_flower("mcl_mushrooms:mushroom_red", {
name = "mushroom_red",
desc = S("Red Mushroom"),
image = "farming_mushroom_red.png",
image = "mcl_mushrooms_mushroom_red.png",
})
mcl_flowerpots.register_potted_flower("mcl_core:sapling", {

View File

@ -3219,12 +3219,12 @@
101,
46
],
"farming_carrot.png": [
"mcl_farming_carrot.png": [
147,
106,
63
],
"farming_potato_poison.png": [
"mcl_farming_potato_poison.png": [
121,
93,
55
@ -3234,7 +3234,7 @@
0,
0
],
"farming_cookie.png": [
"mcl_farming_cookie.png": [
144,
100,
61
@ -3254,7 +3254,7 @@
96,
96
],
"farming_carrot_4.png": [
"mcl_farming_carrot_4.png": [
93,
105,
58
@ -3264,7 +3264,7 @@
142,
66
],
"farming_tool_woodhoe.png": [
"mcl_farming_tool_woodhoe.png": [
120,
101,
86
@ -3274,17 +3274,17 @@
119,
65
],
"farming_carrot_1.png": [
"mcl_farming_carrot_1.png": [
75,
112,
61
],
"farming_carrot_3.png": [
"mcl_farming_carrot_3.png": [
70,
107,
57
],
"farming_melon.png": [
"mcl_farming_melon.png": [
153,
84,
62
@ -3294,12 +3294,12 @@
120,
87
],
"farming_wheat_harvested.png": [
"mcl_farming_wheat_harvested.png": [
178,
134,
80
],
"farming_pumpkin_side.png": [
"mcl_farming_pumpkin_side.png": [
186,
100,
42
@ -3334,7 +3334,7 @@
80,
68
],
"farming_tool_diamondhoe.png": [
"mcl_farming_tool_diamondhoe.png": [
101,
104,
104
@ -3379,22 +3379,22 @@
116,
81
],
"farming_pumpkin_face_light.png": [
"mcl_farming_pumpkin_face_light.png": [
189,
100,
45
],
"farming_potato_baked.png": [
"mcl_farming_potato_baked.png": [
118,
84,
45
],
"farming_melon_side.png": [
"mcl_farming_melon_side.png": [
68,
95,
37
],
"farming_potato.png": [
"mcl_farming_potato.png": [
107,
74,
39
@ -3404,12 +3404,12 @@
97,
45
],
"farming_pumpkin_top.png": [
"mcl_farming_pumpkin_top.png": [
172,
87,
40
],
"farming_bread.png": [
"mcl_farming_bread.png": [
177,
133,
94
@ -3419,7 +3419,7 @@
70,
63
],
"farming_melon_top.png": [
"mcl_farming_melon_top.png": [
58,
80,
33
@ -3429,7 +3429,7 @@
106,
57
],
"farming_tool_stonehoe.png": [
"mcl_farming_tool_stonehoe.png": [
133,
122,
111
@ -3439,22 +3439,22 @@
104,
88
],
"farming_tool_goldhoe.png": [
"mcl_farming_tool_goldhoe.png": [
162,
131,
70
],
"farming_carrot_gold.png": [
"mcl_farming_carrot_gold.png": [
140,
122,
48
],
"farming_carrot_2.png": [
"mcl_farming_carrot_2.png": [
72,
108,
58
],
"farming_pumpkin_face.png": [
"mcl_farming_pumpkin_face.png": [
161,
79,
37
@ -3474,7 +3474,7 @@
97,
45
],
"farming_tool_steelhoe.png": [
"mcl_farming_tool_steelhoe.png": [
123,
112,
102
@ -7479,7 +7479,7 @@
92,
83
],
"farming_mushroom_red.png": [
"mcl_mushrooms_mushroom_red.png": [
169,
59,
58
@ -7504,12 +7504,12 @@
39,
25
],
"farming_mushroom_brown.png": [
"mcl_mushrooms_mushroom_brown.png": [
121,
81,
59
],
"farming_mushroom_stew.png": [
"mcl_mushrooms_mushroom_stew.png": [
134,
97,
67

View File

@ -32,9 +32,9 @@ minetest.register_node("mcl_mushrooms:mushroom_brown", {
_doc_items_usagehelp = usagehelp,
_tt_help = tt_help,
drawtype = "plantlike",
tiles = { "farming_mushroom_brown.png" },
inventory_image = "farming_mushroom_brown.png",
wield_image = "farming_mushroom_brown.png",
tiles = { "mcl_mushrooms_mushroom_brown.png" },
inventory_image = "mcl_mushrooms_mushroom_brown.png",
wield_image = "mcl_mushrooms_mushroom_brown.png",
sunlight_propagates = true,
paramtype = "light",
walkable = false,
@ -60,9 +60,9 @@ minetest.register_node("mcl_mushrooms:mushroom_red", {
_doc_items_usagehelp = usagehelp,
_tt_help = tt_help,
drawtype = "plantlike",
tiles = { "farming_mushroom_red.png" },
inventory_image = "farming_mushroom_red.png",
wield_image = "farming_mushroom_red.png",
tiles = { "mcl_mushrooms_mushroom_red.png" },
inventory_image = "mcl_mushrooms_mushroom_red.png",
wield_image = "mcl_mushrooms_mushroom_red.png",
sunlight_propagates = true,
paramtype = "light",
walkable = false,
@ -84,7 +84,7 @@ minetest.register_node("mcl_mushrooms:mushroom_red", {
minetest.register_craftitem("mcl_mushrooms:mushroom_stew", {
description = S("Mushroom Stew"),
_doc_items_longdesc = S("Mushroom stew is a healthy soup which can be consumed to restore some hunger points."),
inventory_image = "farming_mushroom_stew.png",
inventory_image = "mcl_mushrooms_mushroom_stew.png",
on_place = minetest.item_eat(6, "mcl_core:bowl"),
on_secondary_use = minetest.item_eat(6, "mcl_core:bowl"),
groups = { food = 3, eatable = 6 },

Binary file not shown.

Before

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 192 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 202 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 240 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 185 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 209 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 222 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 151 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 153 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 195 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 230 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 213 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 222 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 219 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 303 B

After

Width:  |  Height:  |  Size: 231 B

View File

@ -498,7 +498,7 @@ Source path,Source file,Target path,Target file,xs,ys,xl,yl,xt,yt,Blacklisted?
/assets/minecraft/textures/items,string.png,/mods/ITEMS/mcl_mobitems/textures,mcl_mobitems_string.png,,,,,,,
/assets/minecraft/textures/blocks,mob_spawner.png,/mods/ITEMS/mcl_mobspawners/textures,mob_spawner.png,,,,,,,
/assets/minecraft/textures/blocks,mushroom_brown.png,/mods/ITEMS/mcl_mushrooms/textures,farming_mushroom_brown.png,,,,,,,
/assets/minecraft/textures/blocks,mushroom_red.png,/mods/ITEMS/mcl_mushrooms/textures,farming_mushroom_red.png,,,,,,,
/assets/minecraft/textures/blocks,mushroom_red.png,/mods/ITEMS/mcl_mushrooms/textures,mcl_mushrooms_mushroom_red.png,,,,,,,
/assets/minecraft/textures/items,mushroom_stew.png,/mods/ITEMS/mcl_mushrooms/textures,farming_mushroom_stew.png,,,,,,,
/assets/minecraft/textures/blocks,mushroom_block_inside.png,/mods/ITEMS/mcl_mushrooms/textures,mcl_mushrooms_mushroom_block_inside.png,,,,,,,
/assets/minecraft/textures/blocks,mushroom_block_skin_brown.png,/mods/ITEMS/mcl_mushrooms/textures,mcl_mushrooms_mushroom_block_skin_brown.png,,,,,,,

1 Source path Source file Target path Target file xs ys xl yl xt yt Blacklisted?
498 /assets/minecraft/textures/items string.png /mods/ITEMS/mcl_mobitems/textures mcl_mobitems_string.png
499 /assets/minecraft/textures/blocks mob_spawner.png /mods/ITEMS/mcl_mobspawners/textures mob_spawner.png
500 /assets/minecraft/textures/blocks mushroom_brown.png /mods/ITEMS/mcl_mushrooms/textures farming_mushroom_brown.png
501 /assets/minecraft/textures/blocks mushroom_red.png /mods/ITEMS/mcl_mushrooms/textures farming_mushroom_red.png mcl_mushrooms_mushroom_red.png
502 /assets/minecraft/textures/items mushroom_stew.png /mods/ITEMS/mcl_mushrooms/textures farming_mushroom_stew.png
503 /assets/minecraft/textures/blocks mushroom_block_inside.png /mods/ITEMS/mcl_mushrooms/textures mcl_mushrooms_mushroom_block_inside.png
504 /assets/minecraft/textures/blocks mushroom_block_skin_brown.png /mods/ITEMS/mcl_mushrooms/textures mcl_mushrooms_mushroom_block_skin_brown.png