Skip to content

Commit

Permalink
add some materials for moretrees game agnostic pr (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
wsor4035 committed May 24, 2024
1 parent 3da43eb commit 08bb0d0
Showing 1 changed file with 43 additions and 6 deletions.
49 changes: 43 additions & 6 deletions src/materials.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
local materials = {
dirt = "default:dirt",
sand = "default:sand",
sandstone = "default:sandstone",
gravel = "default:gravel",
Expand All @@ -12,6 +11,10 @@ local materials = {
gold_block = "default:goldblock",
tin_block = "default:tinblock",
axe_steel = "default:axe_steel",
axe_diamond = "default:axe_diamond",
axe_bronze = "default:axe_bronze",
axe_stone = "default:axe_stone",
axe_wood = "default:axe_wood",
pick_steel = "default:pick_steel",
mese = "default:mese",
mese_crystal = "default:mese_crystal",
Expand Down Expand Up @@ -58,6 +61,12 @@ local materials = {
cobble = "default:cobble",
brick = "default:brick",
obsidian_glass = "default:obsidian_glass",
water_source = "default:water_source",
water_flowing = "default:water_flowing",
dirt = "default:dirt",
dirt_with_grass = "default:dirt_with_grass",
apple_leaves = "default:leaves",
jungle_leaves = "default:jungleleaves",
}

if minetest.get_modpath("moreores") then
Expand All @@ -80,7 +89,6 @@ end

if minetest.get_modpath("mcl_core") then
materials = {
dirt = "mcl_core:dirt",
sand = "mcl_core:sand",
sandstone = "mcl_core:sandstone",
gravel = "mcl_core:gravel",
Expand All @@ -93,6 +101,10 @@ if minetest.get_modpath("mcl_core") then
gold_block = "mcl_core:gold_block",
tin_block = "mcl_core:iron_block",
axe_steel = "mcl_core:axe_steel",
axe_diamond = "mcl_core:axe_diamond",
axe_bronze = "mcl_core:axe_bronze",
axe_stone = "mcl_core:axe_stone",
axe_wood = "mcl_core:axe_wood",
pick_steel = "mcl_core:pick_steel",
mese = "mesecons_torch:redstoneblock",
mese_crystal = "mesecons:redstone",
Expand Down Expand Up @@ -138,10 +150,15 @@ if minetest.get_modpath("mcl_core") then
chest = "mcl_chests:chest",
cobble = "mcl_core:cobble",
brick = "mcl_core:brick",
water_source = "mcl_core:water_source",
water_flowing = "mcl_core:water_flowing",
dirt = "mcl_core:dirt",
dirt_with_grass = "mcl_core:dirt_with_grass",
apple_leaves = "mcl_trees:apple_leaves",
jungle_leaves = "mcl_trees:jungle_leaves",
}
elseif minetest.get_modpath("fl_ores") and minetest.get_modpath("fl_stone") then
materials = {
dirt = "fl_topsoil:dirt",
sand = "fl_stone:sand",
sandstone = "fl_stone:sandstone",
gravel = "fl_topsoil:gravel",
Expand All @@ -153,8 +170,12 @@ elseif minetest.get_modpath("fl_ores") and minetest.get_modpath("fl_stone") then
steel_block = "fl_ores:iron_block",
gold_block = "fl_ores:gold_block",
tin_block = "fl_ores:tin_block",
axe_steel = "fl_tools:steel_pick",
pick_steel = "fl_tools:steel_axe",
axe_steel = "fl_tools:steel_axe",
axe_diamond = "fl_tools:diamond_axe",
axe_bronze = "fl_tools:bronze_axe",
axe_stone = "fl_tools:stone_axe",
axe_wood = "fl_tools:wood_axe",
pick_steel = "fl_tools:steel_pick",
mese = "fl_ores:iron_ingot",
mese_crystal = "fl_ores:iron_ingot",
mese_crystal_fragment = "fl_ores:iron_ingot",
Expand Down Expand Up @@ -199,6 +220,12 @@ elseif minetest.get_modpath("fl_ores") and minetest.get_modpath("fl_stone") then
chest = "fl_storage:wood_chest",
cobble = "fl_stone:stone_rubble",
brick = "",
water_source = "fl_liquids:water_source",
water_flowing = "fl_liquids:water_flowing",
dirt = "fl_stone:dirt",
dirt_with_grass = "fl_topsoil:dirt_with_grass",
apple_leaves = "fl_trees:apple_leaves",
jungle_leaves = "fl_trees:jungletree_leaves",
}
elseif minetest.get_modpath("hades_core") then
materials = {
Expand All @@ -215,6 +242,10 @@ elseif minetest.get_modpath("hades_core") then
gold_block = "hades_core:goldblock",
tin_block = "hades_core:tinblock",
axe_steel = "hades_core:axe_steel",
axe_diamond = "hades_core:axe_diamond",
axe_bronze = "hades_core:axe_bronze",
axe_stone = "hades_core:axe_stone",
axe_wood = "hades_core:axe_wood",
pick_steel = "hades_core:pick_steel",
mese = "hades_core:mese",
mese_crystal = "hades_core:mese_crystal",
Expand Down Expand Up @@ -266,7 +297,13 @@ elseif minetest.get_modpath("hades_core") then
desert_sand = "hades_core:volcanic_sand",
chest = "hades_chests:chest";
cobble = "hades_core:cobble",
brick = "hades_core:brick"
brick = "hades_core:brick",
water_source = "hades_core:water_source",
water_flowing = "hades_core:water_flowing",
dirt = "hades_core:dirt",
dirt_with_grass = "hades_core:dirt_with_grass",
apple_leaves = "hades_core:leaves",
jungle_leaves = "hades_core:jungleleaves",
}

if minetest.get_modpath("hades_bucket") then
Expand Down

0 comments on commit 08bb0d0

Please sign in to comment.