Added GameJam 2019 CERN Craft The Web mod.

This commit is contained in:
Ralf Erik Rossel 2019-01-26 17:46:09 +01:00
parent 4a49c16e9a
commit dc994cab3b
16 changed files with 28 additions and 0 deletions

1
mods/gjcctw/depends.txt Normal file
View File

@ -0,0 +1 @@
default

View File

@ -0,0 +1 @@
This is the GameJam CERN Craft The Web mod. : )

22
mods/gjcctw/init.lua Normal file
View File

@ -0,0 +1,22 @@
print("Found the GameJam CERN Craft The Web mod! Yay!")
local ret = dofile(minetest.get_modpath("gjcctw") .. "/script.lua")
print(ret)
minetest.register_node("gjcctw:reference", {
description = "This is a reference node",
tiles = {"reference_16x16.png"},
groups = {cracky=1, oddly_breakable_by_hand=2}
})
minetest.register_node("gjcctw:idea", {
description = "This is an idea node",
tiles = {"idea_16x16.png"},
groups = {cracky=1, oddly_breakable_by_hand=2}
})
minetest.register_node("gjcctw:paper", {
description = "This is a paper node",
tiles = {"paper_16x16.png"},
groups = {cracky=1, oddly_breakable_by_hand=2}
})

3
mods/gjcctw/mod.conf Normal file
View File

@ -0,0 +1,3 @@
name = gjcctw
descriptions = Adds basic blocks
depends = default

BIN
mods/gjcctw/screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

1
mods/gjcctw/script.lua Normal file
View File

@ -0,0 +1 @@
return "Hello MineTest World!"

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 246 B

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 B

Binary file not shown.