initial upload

master
NathanSalapat 2019-04-02 21:43:10 -05:00
commit 71cbfdb258
6 changed files with 19 additions and 0 deletions

16
init.lua Normal file
View File

@ -0,0 +1,16 @@
minetest.register_node("global:grid", {
description = "Color Grid",
tiles = {{name='global_grid.png', align_style='world', scale=4}},
inventory_image = '[inventorycube{global_grid.png&[sheet:4x4:1,1{global_grid.png&[sheet:4x4:1,1{global_grid.png&[sheet:4x4:1,1',
groups = {oddly_breakable_by_hand=3},
})
minetest.override_item('default:brick', {
tiles = {{name='global_stone.png', align_style='world', scale=4}},
inventory_image = '[inventorycube{global_stone.png&[sheet:4x4:1,1{global_stone.png&[sheet:4x4:1,1{global_stone.png&[sheet:4x4:1,1',
})
minetest.override_item('default:cobble', {
tiles = {{name='global_cobble.png', align_style='world', scale=4}},
inventory_image = '[inventorycube{global_cobble.png&[sheet:4x4:1,1{global_cobble.png&[sheet:4x4:1,1{global_cobble.png&[sheet:4x4:1,1',
})

1
license.txt Normal file
View File

@ -0,0 +1 @@
Brick and Cobble textures derived from Minetest_game textures, CC BY-SA 3.0

2
mod.conf Normal file
View File

@ -0,0 +1,2 @@
name = global
depends = default

BIN
textures/global_cobble.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
textures/global_grid.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

BIN
textures/global_stone.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB