This commit is contained in:
Kacper Kostka 2023-01-07 21:26:14 +01:00
parent f56a93b3c3
commit e3df3705b0
32 changed files with 124 additions and 144 deletions

View File

@ -1,5 +1,4 @@
title = SussyCraft
description = SUSSY LITTLE BAKA UWU
allowed_mapgens = singlenode
disabled_settings = !enable_damage, creative_mode, enable_server
disabled_settings = enable_server
author = kacperks, Looki2000

123
mods/amogus_blocks/init.lua Normal file
View File

@ -0,0 +1,123 @@
minetest.register_node("amogus_blocks:ladder_steel", {
description = "Ladder",
drawtype = "signlike",
tiles = {"ladder.png"},
paramtype = "light",
paramtype2 = "wallmounted",
sunlight_propagates = true,
walkable = false,
climbable = true,
is_ground_content = false,
selection_box = {
type = "wallmounted",
},
groups = {cracky = 2},
})
minetest.register_node("amogus_blocks:floor", {
description = "Floor",
tiles = {"floor.png"},
drop = 'amogus_blocks:floor',
legacy_mineral = true, groups = {cracky=3, stone=1},
})
minetest.register_node("amogus_blocks:tv", {
description = "CRT TV",
tiles = {
"PC2.png",
"PC2.png",
"PC2.png",
"PC2.png",
"PC2.png",
"PC.png"
},
paramtype2 = "facedir",
drop = 'amogus_blocks:amogus_blocks', groups = {cracky=3, stone=1},
})
minetest.register_node("amogus_blocks:bricks", {
description = "Bricks",
tiles = {"Bricks.png"},
drop = 'amogus_blocks:grey_bricks', groups = {cracky=3, stone=1},
})
minetest.register_node("amogus_blocks:grey_bricks", {
description = "Bricks 2",
tiles = {"Bricks2.png"}, groups = {cracky=3, stone=1},
drop = 'amogus_blocks:grey_bricks', groups = {cracky=3, stone=1},
})
minetest.register_node("amogus_blocks:planks", {
description = "Planks",
tiles = {"Planks.png"},
drop = 'amogus_blocks:planks', groups = {cracky=3, stone=1},
})
minetest.register_node("amogus_blocks:purpleblock", {
description = "Purple Block",
tiles = {"purpleblock.png"},
drop = 'amogus_blocks:purpleblock', groups = {cracky=3, stone=1},
})
minetest.register_node("amogus_blocks:purpleblock", {
description = "Purple Block",
tiles = {"purpleblock.png"},
drop = 'amogus_blocks:purpleblock', groups = {cracky=3, stone=1},
})
minetest.register_node("amogus_blocks:redblock", {
description = "Red Block",
tiles = {"redblock.png"},
drop = 'amogus_blocks:redblock', groups = {cracky=3, stone=1},
})
minetest.register_node("amogus_blocks:glass", {
description = "Glass",
tiles = {"glass.png"},
drop = 'amogus_blocks:glass', groups = {cracky=3, stone=1},
})
minetest.register_node("amogus_blocks:glowing_block", {
description = "Glowing Block",
tiles = {"glowing_block.png"},
drop = 'amogus_blocks:glowing_block', groups = {cracky=3, stone=1},
light_source = 14
})
minetest.register_node("amogus_blocks:transparent", {
description = "Transparent",
drawtype = "glasslike",
tiles = {"glass.png"},
paramtype = "light",
is_ground_content = false,
sunlight_propagates = true,
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_node("amogus_blocks:grass", {
description = "Grass",
tiles = {
"g2.png",
"d.png",
"g.png",
"g.png",
"g.png",
"g.png"
},
drop = 'amogus:grass', groups = {cracky=3, stone=1},
})
-- add wood block
minetest.register_node("amogus_blocks:wood", {
description = "Wood",
tiles = {"wood.png"},
drop = 'amogus:wood', groups = {cracky=3, stone=1},
})
minetest.register_alias("mapgen_dirt", "amogus_blocks:grass")
minetest.register_alias("mapgen_stone", "amogus_blocks:floor")

View File

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

Before

Width:  |  Height:  |  Size: 1015 B

After

Width:  |  Height:  |  Size: 1015 B

View File

Before

Width:  |  Height:  |  Size: 147 B

After

Width:  |  Height:  |  Size: 147 B

View File

Before

Width:  |  Height:  |  Size: 100 B

After

Width:  |  Height:  |  Size: 100 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 B

View File

Before

Width:  |  Height:  |  Size: 158 B

After

Width:  |  Height:  |  Size: 158 B

View File

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 265 B

View File

Before

Width:  |  Height:  |  Size: 126 B

After

Width:  |  Height:  |  Size: 126 B

View File

Before

Width:  |  Height:  |  Size: 214 B

After

Width:  |  Height:  |  Size: 214 B

View File

Before

Width:  |  Height:  |  Size: 116 B

After

Width:  |  Height:  |  Size: 116 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 192 B

View File

Before

Width:  |  Height:  |  Size: 139 B

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 823 B

View File

Before

Width:  |  Height:  |  Size: 154 KiB

After

Width:  |  Height:  |  Size: 154 KiB

View File

Before

Width:  |  Height:  |  Size: 783 B

After

Width:  |  Height:  |  Size: 783 B

View File

Before

Width:  |  Height:  |  Size: 142 B

After

Width:  |  Height:  |  Size: 142 B

View File

Before

Width:  |  Height:  |  Size: 125 B

After

Width:  |  Height:  |  Size: 125 B

View File

Before

Width:  |  Height:  |  Size: 127 B

After

Width:  |  Height:  |  Size: 127 B

View File

Before

Width:  |  Height:  |  Size: 292 B

After

Width:  |  Height:  |  Size: 292 B

View File

Before

Width:  |  Height:  |  Size: 187 B

After

Width:  |  Height:  |  Size: 187 B

View File

@ -1,142 +0,0 @@
minetest.register_node("poop:ladder_steel", {
description = "Ladder",
drawtype = "signlike",
tiles = {"ladder.png"},
paramtype = "light",
paramtype2 = "wallmounted",
sunlight_propagates = true,
walkable = false,
climbable = true,
is_ground_content = false,
selection_box = {
type = "wallmounted",
},
groups = {cracky = 2},
})
minetest.register_tool("poop:tool", {
description = "My Tool",
inventory_image = "flux_capacitor.png",
tool_capabilities = {
full_punch_interval = 1.5,
max_drop_level = 1,
groupcaps = {
crumbly = {
maxlevel = 2,
uses = 20,
times = { [1]=1.60, [2]=1.20, [3]=0.80 }
},
},
damage_groups = {fleshy=2},
},
})
minetest.register_node("poop:floor", {
description = "Floor",
tiles = {"floor.png"},
drop = 'poop:floor',
legacy_mineral = true, groups = {cracky=3, stone=1},
})
minetest.register_node("poop:Poop", {
description = "Just Shit",
tiles = {"Poop.png"},
drop = 'poop:PoopItem', groups = {falling_node = 1, cracky=3, stone=1},
})
minetest.register_node("poop:tv", {
description = "CRT TV",
tiles = {
"PC2.png",
"PC2.png",
"PC2.png",
"PC2.png",
"PC2.png",
"PC.png"
},
paramtype2 = "facedir",
drop = 'poop:Poop', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:bricks", {
description = "Bricks",
tiles = {"Bricks.png"},
drop = 'poop:grey_bricks', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:grey_bricks", {
description = "Bricks 2",
tiles = {"Bricks2.png"}, groups = {cracky=3, stone=1},
drop = 'poop:grey_bricks', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:planks", {
description = "Planks",
tiles = {"Planks.png"},
drop = 'poop:planks', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:purpleblock", {
description = "Purple Block",
tiles = {"purpleblock.png"},
drop = 'poop:purpleblock', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:purpleblock", {
description = "Purple Block",
tiles = {"purpleblock.png"},
drop = 'poop:purpleblock', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:redblock", {
description = "Red Block",
tiles = {"redblock.png"},
drop = 'poop:redblock', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:aquablock", {
description = "Aqua Block",
tiles = {"aquablock.png"},
drop = 'poop:aquablock', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:glass", {
description = "Glass",
tiles = {"glass.png"},
drop = 'poop:glass', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:Poop2", {
description = "Diarrhea",
tiles = {"sraka.png"},
drop = 'poop:Poop', groups = {falling_node = 1, cracky=3, stone=1},
})
minetest.register_node("poop:glowing_block", {
description = "Glowing Block",
tiles = {"glowing_block.png"},
drop = 'poop:glowing_block', groups = {cracky=3, stone=1},
light_source = 14
})
minetest.register_node("poop:flux_capacitor", {
description = "Flux Capacitor from Back to the Future",
tiles = {"fluxcap2.png", "fluxcap2.png","fluxcap2.png","fluxcap.png","fluxcap2.png","fluxcap2.png"},
drop = 'poop:Poop', groups = {cracky=3, stone=1},
})
minetest.register_node("poop:transparent", {
description = "Transparent",
drawtype = "glasslike",
tiles = {"glass.png"},
paramtype = "light",
is_ground_content = false,
sunlight_propagates = true,
groups = {cracky=3,oddly_breakable_by_hand=3},
})
minetest.register_alias("mapgen_stone", "poop:floor")

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 318 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 784 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 516 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 B