Add files via upload

master
ChristianSoldier 2018-10-27 13:57:08 -04:00 committed by GitHub
parent 0236e9f1a6
commit 6d9341fdb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 159 additions and 0 deletions

159
init.lua Normal file
View File

@ -0,0 +1,159 @@
minetest.register_node("tsp:floor", {
description = "floor",
tiles = {
"floor.png",
"wood.png",
"wood.png",
"wood.png",
"wood.png",
"wood.png"
},
is_ground_content = true,
groups = {cracky = 3},
drop = "tsp:floor"
})
minetest.register_node("tsp:wall_old_a", {
description = "wall_a",
tiles = {
"wood.png",
"wood.png",
"walla.png",
"walla.png",
"walla.png",
"walla.png"
},
is_ground_content = true,
groups = {cracky = 3},
drop = "tsp:wall_old_a"
})
minetest.register_node("tsp:wall_old_b", {
description = "wall_b",
tiles = {
"wood.png",
"wood.png",
"wallb.png",
"wallb.png",
"wallb.png",
"wallb.png"
},
is_ground_content = true,
groups = {cracky = 3},
drop = "tsp:wall_old_b"
})
minetest.register_node("tsp:c1", {
drawtype = "nodebox",
paramtype = "light",
description = "Stanley's computer",
tiles = {
"c_top.png",
"c_top.png",
"c_front.png",
"c_back.png",
"c_right.png",
"c_left.png"
},
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.375, 0.125, -0.1875, 0.375},
{-0.4375, -0.1875, -0.3125, 0, 0.25, 0.3125},
{-0.3125, 0.25, -0.3125, 0.0625, 0.3125, 0.3125},
{-0.25, -0.125, -0.3125, 0.0625, 0.25, -0.25},
{-0.1875, -0.125, 0.25, 0.0625, 0.25, 0.3125},
{-0.1875, -0.1875, -0.3125, 0.0625, -0.125, 0.3125},
},
}
})
minetest.register_node("tsp:floor_old", {
description = "old floor",
tiles = {
"floor_old.png",
"wood.png",
"wood.png",
"wood.png",
"wood.png",
"wood.png"
},
is_ground_content = true,
groups = {cracky = 3},
drop = "tsp:floor_old"
})
minetest.register_node("tsp:roof_old", {
description = "old roof",
tiles = {
"wood.png",
"roof_old.png",
"wood.png",
"wood.png",
"wood.png",
"wood.png"
},
is_ground_content = true,
groups = {cracky = 3},
drop = "tsp:roof_old"
})
minetest.register_node("tsp:roof", {
description = "roof",
tiles = {
"wood.png",
"roof.png",
"wood.png",
"wood.png",
"wood.png",
"wood.png"
},
is_ground_content = true,
groups = {cracky = 3},
drop = "tsp:roof"
})
minetest.register_node("tsp:light_off", {
description = "light off",
tiles = {
"wood.png",
"light.png",
"wood.png",
"wood.png",
"wood.png",
"wood.png"
},
is_ground_content = true,
groups = {cracky = 3},
drop = "tsp:light_off"
})
minetest.register_node("tsp:wall", {
description = "wall",
tiles = {
"wall.png",
"wall.png",
"wall.png",
"wall.png",
"wall.png",
"wall.png"
},
is_ground_content = true,
groups = {cracky = 3},
drop = "tsp:wall"
})
minetest.register_node("tsp:light_on", {
description = "light on",
tiles = {
"wood.png",
"light_on.png",
"wood.png",
"wood.png",
"wood.png",
"wood.png"
},
is_ground_content = true,
groups = {cracky = 3},
light_source = 14
})

BIN
textures/c_back.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
textures/c_front.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
textures/c_left.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
textures/c_right.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
textures/c_top.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
textures/cfront.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
textures/doora.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
textures/doorb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

BIN
textures/floor.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 KiB

BIN
textures/floor_old.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

BIN
textures/light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

BIN
textures/light_on.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 228 KiB

BIN
textures/roof.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 KiB

BIN
textures/roof_old.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 853 KiB

BIN
textures/wall.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
textures/walla.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 KiB

BIN
textures/wallb.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 KiB

BIN
textures/wood.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB