commit d2f75c96229af760787eeb2db91d4b088ee865d7 Author: Kyra Zimmer Date: Sun Aug 9 11:59:03 2020 +0200 initial diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ef2c007 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.sublime* diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..7e93af8 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,7 @@ +# Copyright 2020 WorstConcept team + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/game.conf b/game.conf new file mode 100644 index 0000000..189b951 --- /dev/null +++ b/game.conf @@ -0,0 +1 @@ +name = WorstBlockGame diff --git a/menu/.gitkeep b/menu/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/minetest.conf b/minetest.conf new file mode 100644 index 0000000..9dd4233 --- /dev/null +++ b/minetest.conf @@ -0,0 +1,15 @@ +new_style_leaves = 1 +new_style_water = 1 + +opaque_water = 0 + +smooth_lighting = 1 + +time_speed = 1 + +view_bobbing = 1 +view_bobbing_amount = 0 + +enable_clouds = 1 +enable_3d_clouds = 1 + diff --git a/mods/wbg_core/.gitignore b/mods/wbg_core/.gitignore new file mode 100644 index 0000000..d907c43 --- /dev/null +++ b/mods/wbg_core/.gitignore @@ -0,0 +1 @@ +*.lua diff --git a/mods/wbg_core/init.moon b/mods/wbg_core/init.moon new file mode 100644 index 0000000..069ec4d --- /dev/null +++ b/mods/wbg_core/init.moon @@ -0,0 +1,6 @@ +export wbg_core = {} + +include = (file)-> + dofile minetest.get_modpath('wbg_core')..'/scripts/'..file..'.lua' + +include 'nodes' diff --git a/mods/wbg_core/locale/.gitkeep b/mods/wbg_core/locale/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/mods/wbg_core/media/.gitkeep b/mods/wbg_core/media/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/mods/wbg_core/mod.conf b/mods/wbg_core/mod.conf new file mode 100644 index 0000000..207b2c3 --- /dev/null +++ b/mods/wbg_core/mod.conf @@ -0,0 +1,2 @@ +name = wbg_core +depends = default diff --git a/mods/wbg_core/models/.gitkeep b/mods/wbg_core/models/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/mods/wbg_core/scripts/nodes.moon b/mods/wbg_core/scripts/nodes.moon new file mode 100644 index 0000000..e69de29 diff --git a/mods/wbg_core/settingtypes.txt b/mods/wbg_core/settingtypes.txt new file mode 100644 index 0000000..e69de29 diff --git a/mods/wbg_core/sounds/.gitkeep b/mods/wbg_core/sounds/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/mods/wbg_core/textures/.gitkeep b/mods/wbg_core/textures/.gitkeep new file mode 100644 index 0000000..e69de29