Compare commits

..

No commits in common. "07d056c87e5efbc17a0118f63005d7e5c1715de6" and "6b4e970eb88c745d1b8e7ed0e89c3b628d227646" have entirely different histories.

13 changed files with 3 additions and 69 deletions

View File

@ -1,8 +0,0 @@
minetest.register_craft({
output = "main:pickaxe_steel"
recipe = {
{"main:steel_ingot", "main:steel_ingot", "main:steel_ingot"},
{"main:steel_ingot", "main:stick", "main:steel_ingot"},
{"", "main:stick", ""}
}
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 367 B

After

Width:  |  Height:  |  Size: 477 B

View File

@ -18,7 +18,6 @@ minetest.register_item(":", {
minetest.register_item("main:pickaxe_steel", {
type = "none",
wield_image = "main_pickaxe_steel.png",
inventory_image = "main_pickaxe_steel.png",
tool_capabilities = {
max_drop_level = 1,
full_punch_interval = 0.8,

View File

@ -1 +0,0 @@
Hello, this a new mod for adsurv! Probably won't work with MTG! It's a mod that adds more kinds of stones and some odd ores like limestone, chalk, silstone, and shale

View File

@ -1,23 +0,0 @@
minetest.register_node("minerals:limestone", {
description = "Limestone",
tiles = {"minerals_limestone.png"},
groups = {cracky = 3},
})
minetest.register_node("minerals:obsidian", {
description = "Obsidian",
tiles = {"minerals_obsidian.png"},
groups = {cracky = 2},
})
minetest.register_node("minerals:concrete_solid", {
description = "Solid Concrete",
tiles = {"minerals_concrete_solid.png"},
groups = {cracky = 1},
})
minetest.register_node("minerals:chalk", {
description = "Chalk",
tiles = {"minerals_chalk.png"},
groups = {cracky = 3},
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 484 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 309 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 B

View File

@ -210,53 +210,20 @@ minetest.register_node("quicksand:quicksand", {
groups = {crumbly = 1, quicksandy = 2},
})
------------
--Weak quicksand
----------
minetest.register_node("quicksand:quicksand_weak", {
description = "Weak Quicksand",
drawtype = "liquid",
paramtype = "light",
tiles = {name = "quicksand_quicksand_weak.png"},
post_effect_color = {r = 80, g = 50, b = 10},
--Behavior
walkable = false,
pointable = true,
buildable_to = false,
diggable = true,
is_ground_content = false,
--Properties
liquid_range = 0,
liquid_viscosity = 10,
liquid_renewable = false,
drowning = 1,
damage_per_second = 3,
liquidtype = "source",
liquid_alternative_flowing = "quicksand:quicksand_weak",
liquid_alternative_source = "quicksand:quicksand_weak",
groups = {crumbly = 1, quicksandy = 3},
})
-----------
--Longstick
-----------
minetest.register_item("quicksand:longstick", {
type = "none",
wield_image = "quicksand_stick.png",
inventory_image = "quicksand_stick.png",
wield_scale = {x=1, y=6, z=1},
wield_image = "main_pickaxe_steel.png",
inventory_image = "main_pickaxe_steel.png",
wield_scale = {x=1, y=4, z=1},
range = 2,
on_use = function(itemstack, player, pointed_thing)
local rand = math.random(1)
if rand == 0 then
local newpos = pointed_thing.above
if newpos ~= nil then
player:set_pos(newpos)
end
end
end
})

Binary file not shown.

Before

Width:  |  Height:  |  Size: 376 B

After

Width:  |  Height:  |  Size: 340 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 724 B