Skip to content

Commit

Permalink
farming updates; fixes for hardness of some ores
Browse files Browse the repository at this point in the history
  • Loading branch information
squidicuzz committed Jul 1, 2023
1 parent 874a800 commit c941a3e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions mods/ctg_world/resources.lua
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ minetest.register_node("ctg_world:stone_with_nickel", {
description = S("Nickel Ore"),
tiles = {"default_stone.png^ctg_mineral_nickel.png"},
groups = {
cracky = 1
cracky = 2
},
drop = "ctg_world:nickel_lump",
sounds = default.node_sound_stone_defaults()
Expand All @@ -124,7 +124,7 @@ minetest.register_node("ctg_world:desert_stone_with_nickel", {
description = S("Nickel Ore"),
tiles = {"default_desert_stone.png^ctg_mineral_nickel.png"},
groups = {
cracky = 1
cracky = 2
},
drop = "ctg_world:nickel_lump",
sounds = default.node_sound_stone_defaults()
Expand All @@ -135,7 +135,7 @@ minetest.register_node("ctg_world:stone_space_with_nickel", {
description = S("Nickel Ore"),
tiles = {"default_stone.png^ctg_mineral_nickel.png"},
groups = {
cracky = 1
cracky = 2
},
drop = "ctg_world:nickel_lump",
sounds = default.node_sound_stone_defaults()
Expand All @@ -145,7 +145,7 @@ minetest.register_node("ctg_world:red_stone_with_nickel", {
description = S("Nickel Ore"),
tiles = {"asteroid_redstone.png^ctg_mineral_nickel.png"},
groups = {
cracky = 1
cracky = 2
},
drop = "ctg_world:nickel_lump",
sounds = default.node_sound_stone_defaults()
Expand All @@ -159,7 +159,7 @@ minetest.register_node("ctg_world:nickel_block", {
-- paramtype2 = "facedir",
sounds = default.node_sound_metal_defaults(),
groups = {
cracky = 1,
cracky = 2,
level = 1,
metal = 2
},
Expand Down Expand Up @@ -256,7 +256,7 @@ minetest.register_node("ctg_world:stone_with_aluminum", {
description = S("Aluminum Ore"),
tiles = {"default_stone.png^ctg_mineral_aluminum.png"},
groups = {
cracky = 1,
cracky = 2,
aluminum_ore = 1
},
drop = "ctg_world:aluminum_lump",
Expand All @@ -267,7 +267,7 @@ minetest.register_node("ctg_world:desert_stone_with_aluminum", {
description = S("Aluminum Ore"),
tiles = {"default_desert_stone.png^ctg_mineral_aluminum.png"},
groups = {
cracky = 1,
cracky = 2,
aluminum_ore = 1
},
drop = "ctg_world:aluminum_lump",
Expand All @@ -279,7 +279,7 @@ minetest.register_node("ctg_world:stone_space_with_aluminum", {
description = S("Aluminum Ore"),
tiles = {"default_stone.png^ctg_mineral_aluminum.png"},
groups = {
cracky = 1,
cracky = 2,
aluminum_ore = 1
},
drop = "ctg_world:aluminum_lump",
Expand All @@ -290,7 +290,7 @@ minetest.register_node("ctg_world:red_stone_with_aluminum", {
description = S("Aluminum Ore"),
tiles = {"asteroid_redstone.png^ctg_mineral_aluminum.png"},
groups = {
cracky = 1,
cracky = 2,
aluminum_ore = 1
},
drop = "ctg_world:aluminum_lump",
Expand All @@ -305,7 +305,7 @@ minetest.register_node("ctg_world:aluminum_block", {
-- paramtype2 = "facedir",
sounds = default.node_sound_metal_defaults(),
groups = {
cracky = 1,
cracky = 2,
level = 1,
metal = 4
},
Expand Down Expand Up @@ -381,7 +381,7 @@ minetest.register_node("ctg_world:desert_stone_with_coal", {
description = S("Coal Ore"),
tiles = {"default_desert_stone.png^default_mineral_coal.png"},
groups = {
cracky = 1
cracky = 3
},
drop = "default:coal_lump",
sounds = default.node_sound_stone_defaults()
Expand All @@ -391,7 +391,7 @@ minetest.register_node("ctg_world:desert_stone_with_copper", {
description = S("Copper Ore"),
tiles = {"default_desert_stone.png^default_mineral_copper.png"},
groups = {
cracky = 1
cracky = 3
},
drop = "default:copper_lump",
sounds = default.node_sound_stone_defaults()
Expand All @@ -411,7 +411,7 @@ minetest.register_node("ctg_world:desert_stone_with_gold", {
description = S("Gold Ore"),
tiles = {"default_desert_stone.png^default_mineral_gold.png"},
groups = {
cracky = 1
cracky = 2
},
drop = "default:gold_lump",
sounds = default.node_sound_stone_defaults()
Expand All @@ -421,7 +421,7 @@ minetest.register_node("ctg_world:desert_stone_with_iron", {
description = S("Iron Ore"),
tiles = {"default_desert_stone.png^default_mineral_iron.png"},
groups = {
cracky = 1
cracky = 2
},
drop = "default:iron_lump",
sounds = default.node_sound_stone_defaults()
Expand All @@ -431,7 +431,7 @@ minetest.register_node("ctg_world:desert_stone_with_tin", {
description = S("Tin Ore"),
tiles = {"default_desert_stone.png^default_mineral_tin.png"},
groups = {
cracky = 1
cracky = 2
},
drop = "default:tin_lump",
sounds = default.node_sound_stone_defaults()
Expand All @@ -441,7 +441,7 @@ minetest.register_node("ctg_world:desert_stone_with_mese", {
description = S("Mese Ore"),
tiles = {"default_desert_stone.png^default_mineral_mese.png"},
groups = {
cracky = 1
cracky = 3
},
drop = "default:mese_crystal",
sounds = default.node_sound_stone_defaults()
Expand Down
2 changes: 1 addition & 1 deletion mods/x_farming
Submodule x_farming updated 1 files
+32 −5 bees.lua

0 comments on commit c941a3e

Please sign in to comment.