From 8bc83cf3db9b6c3775bb822b6e298a890df4ceda Mon Sep 17 00:00:00 2001 From: DesertMermaid Date: Tue, 10 Dec 2024 17:14:33 -0800 Subject: [PATCH 1/2] Forgot these. --- mods/CORE/vox_autogroup/init.lua | 14 ++++++++++++++ mods/CORE/vox_autogroup/mod.conf | 2 ++ mods/CORE/vox_biomeinfo/init.lua | 14 ++++++++++++++ mods/CORE/vox_biomeinfo/mod.conf | 2 ++ mods/CORE/{colors => vox_colors}/init.lua | 0 mods/CORE/{colors => vox_colors}/mod.conf | 0 mods/CORE/vox_damage/init.lua | 14 ++++++++++++++ mods/CORE/vox_damage/mod.conf | 2 ++ mods/CORE/vox_events/init.lua | 14 ++++++++++++++ mods/CORE/vox_events/mod.conf | 2 ++ mods/CORE/vox_explosions/init.lua | 14 ++++++++++++++ mods/CORE/vox_explosions/mod.conf | 2 ++ mods/CORE/vox_init/init.lua | 14 ++++++++++++++ mods/CORE/vox_init/mod.conf | 2 ++ mods/CORE/vox_loot/init.lua | 14 ++++++++++++++ mods/CORE/vox_loot/mod.conf | 2 ++ mods/CORE/vox_particles/init.lua | 14 ++++++++++++++ mods/CORE/vox_particles/mod.conf | 2 ++ mods/CORE/vox_sounds/init.lua | 14 ++++++++++++++ mods/CORE/vox_sounds/mod.conf | 2 ++ mods/CORE/vox_util/init.lua | 14 ++++++++++++++ mods/CORE/vox_util/mod.conf | 2 ++ mods/CORE/vox_worlds/init.lua | 14 ++++++++++++++ mods/CORE/vox_worlds/mod.conf | 2 ++ 24 files changed, 176 insertions(+) create mode 100644 mods/CORE/vox_autogroup/init.lua create mode 100644 mods/CORE/vox_autogroup/mod.conf create mode 100644 mods/CORE/vox_biomeinfo/init.lua create mode 100644 mods/CORE/vox_biomeinfo/mod.conf rename mods/CORE/{colors => vox_colors}/init.lua (100%) rename mods/CORE/{colors => vox_colors}/mod.conf (100%) create mode 100644 mods/CORE/vox_damage/init.lua create mode 100644 mods/CORE/vox_damage/mod.conf create mode 100644 mods/CORE/vox_events/init.lua create mode 100644 mods/CORE/vox_events/mod.conf create mode 100644 mods/CORE/vox_explosions/init.lua create mode 100644 mods/CORE/vox_explosions/mod.conf create mode 100644 mods/CORE/vox_init/init.lua create mode 100644 mods/CORE/vox_init/mod.conf create mode 100644 mods/CORE/vox_loot/init.lua create mode 100644 mods/CORE/vox_loot/mod.conf create mode 100644 mods/CORE/vox_particles/init.lua create mode 100644 mods/CORE/vox_particles/mod.conf create mode 100644 mods/CORE/vox_sounds/init.lua create mode 100644 mods/CORE/vox_sounds/mod.conf create mode 100644 mods/CORE/vox_util/init.lua create mode 100644 mods/CORE/vox_util/mod.conf create mode 100644 mods/CORE/vox_worlds/init.lua create mode 100644 mods/CORE/vox_worlds/mod.conf diff --git a/mods/CORE/vox_autogroup/init.lua b/mods/CORE/vox_autogroup/init.lua new file mode 100644 index 0000000..14f1848 --- /dev/null +++ b/mods/CORE/vox_autogroup/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_ = { } \ No newline at end of file diff --git a/mods/CORE/vox_autogroup/mod.conf b/mods/CORE/vox_autogroup/mod.conf new file mode 100644 index 0000000..1cb8912 --- /dev/null +++ b/mods/CORE/vox_autogroup/mod.conf @@ -0,0 +1,2 @@ +name = vox_ +description = Voxelis - \ No newline at end of file diff --git a/mods/CORE/vox_biomeinfo/init.lua b/mods/CORE/vox_biomeinfo/init.lua new file mode 100644 index 0000000..e10e29b --- /dev/null +++ b/mods/CORE/vox_biomeinfo/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_biomeinfo = { } \ No newline at end of file diff --git a/mods/CORE/vox_biomeinfo/mod.conf b/mods/CORE/vox_biomeinfo/mod.conf new file mode 100644 index 0000000..2f2b421 --- /dev/null +++ b/mods/CORE/vox_biomeinfo/mod.conf @@ -0,0 +1,2 @@ +name = vox_biomeinfo +description = Voxelis - biomeinfo \ No newline at end of file diff --git a/mods/CORE/colors/init.lua b/mods/CORE/vox_colors/init.lua similarity index 100% rename from mods/CORE/colors/init.lua rename to mods/CORE/vox_colors/init.lua diff --git a/mods/CORE/colors/mod.conf b/mods/CORE/vox_colors/mod.conf similarity index 100% rename from mods/CORE/colors/mod.conf rename to mods/CORE/vox_colors/mod.conf diff --git a/mods/CORE/vox_damage/init.lua b/mods/CORE/vox_damage/init.lua new file mode 100644 index 0000000..7181bd0 --- /dev/null +++ b/mods/CORE/vox_damage/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_damage = { } \ No newline at end of file diff --git a/mods/CORE/vox_damage/mod.conf b/mods/CORE/vox_damage/mod.conf new file mode 100644 index 0000000..d93c06f --- /dev/null +++ b/mods/CORE/vox_damage/mod.conf @@ -0,0 +1,2 @@ +name = vox_damage +description = Voxelis - damage \ No newline at end of file diff --git a/mods/CORE/vox_events/init.lua b/mods/CORE/vox_events/init.lua new file mode 100644 index 0000000..a2aa416 --- /dev/null +++ b/mods/CORE/vox_events/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_events = { } \ No newline at end of file diff --git a/mods/CORE/vox_events/mod.conf b/mods/CORE/vox_events/mod.conf new file mode 100644 index 0000000..d266501 --- /dev/null +++ b/mods/CORE/vox_events/mod.conf @@ -0,0 +1,2 @@ +name = vox_events +description = Voxelis - events \ No newline at end of file diff --git a/mods/CORE/vox_explosions/init.lua b/mods/CORE/vox_explosions/init.lua new file mode 100644 index 0000000..c08fa8c --- /dev/null +++ b/mods/CORE/vox_explosions/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_explosions = { } \ No newline at end of file diff --git a/mods/CORE/vox_explosions/mod.conf b/mods/CORE/vox_explosions/mod.conf new file mode 100644 index 0000000..fa5e286 --- /dev/null +++ b/mods/CORE/vox_explosions/mod.conf @@ -0,0 +1,2 @@ +name = vox_explosions +description = Voxelis - explosions \ No newline at end of file diff --git a/mods/CORE/vox_init/init.lua b/mods/CORE/vox_init/init.lua new file mode 100644 index 0000000..797023f --- /dev/null +++ b/mods/CORE/vox_init/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_init = { } \ No newline at end of file diff --git a/mods/CORE/vox_init/mod.conf b/mods/CORE/vox_init/mod.conf new file mode 100644 index 0000000..4c25471 --- /dev/null +++ b/mods/CORE/vox_init/mod.conf @@ -0,0 +1,2 @@ +name = vox_init +description = Voxelis - init \ No newline at end of file diff --git a/mods/CORE/vox_loot/init.lua b/mods/CORE/vox_loot/init.lua new file mode 100644 index 0000000..863e073 --- /dev/null +++ b/mods/CORE/vox_loot/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_loot = { } \ No newline at end of file diff --git a/mods/CORE/vox_loot/mod.conf b/mods/CORE/vox_loot/mod.conf new file mode 100644 index 0000000..c921dc4 --- /dev/null +++ b/mods/CORE/vox_loot/mod.conf @@ -0,0 +1,2 @@ +name = vox_loot +description = Voxelis - loot \ No newline at end of file diff --git a/mods/CORE/vox_particles/init.lua b/mods/CORE/vox_particles/init.lua new file mode 100644 index 0000000..796e492 --- /dev/null +++ b/mods/CORE/vox_particles/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_particles = { } \ No newline at end of file diff --git a/mods/CORE/vox_particles/mod.conf b/mods/CORE/vox_particles/mod.conf new file mode 100644 index 0000000..204d46b --- /dev/null +++ b/mods/CORE/vox_particles/mod.conf @@ -0,0 +1,2 @@ +name = vox_particles +description = Voxelis - particles \ No newline at end of file diff --git a/mods/CORE/vox_sounds/init.lua b/mods/CORE/vox_sounds/init.lua new file mode 100644 index 0000000..6def3aa --- /dev/null +++ b/mods/CORE/vox_sounds/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_sounds = { } \ No newline at end of file diff --git a/mods/CORE/vox_sounds/mod.conf b/mods/CORE/vox_sounds/mod.conf new file mode 100644 index 0000000..f83d30e --- /dev/null +++ b/mods/CORE/vox_sounds/mod.conf @@ -0,0 +1,2 @@ +name = vox_sounds +description = Voxelis - sounds \ No newline at end of file diff --git a/mods/CORE/vox_util/init.lua b/mods/CORE/vox_util/init.lua new file mode 100644 index 0000000..a1dd4ef --- /dev/null +++ b/mods/CORE/vox_util/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_util = { } \ No newline at end of file diff --git a/mods/CORE/vox_util/mod.conf b/mods/CORE/vox_util/mod.conf new file mode 100644 index 0000000..c76c634 --- /dev/null +++ b/mods/CORE/vox_util/mod.conf @@ -0,0 +1,2 @@ +name = vox_util +description = Voxelis - util \ No newline at end of file diff --git a/mods/CORE/vox_worlds/init.lua b/mods/CORE/vox_worlds/init.lua new file mode 100644 index 0000000..5cbfb55 --- /dev/null +++ b/mods/CORE/vox_worlds/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_worlds = { } \ No newline at end of file diff --git a/mods/CORE/vox_worlds/mod.conf b/mods/CORE/vox_worlds/mod.conf new file mode 100644 index 0000000..172e859 --- /dev/null +++ b/mods/CORE/vox_worlds/mod.conf @@ -0,0 +1,2 @@ +name = vox_worlds +description = Voxelis - worlds \ No newline at end of file From 6b7d865a9bc99be81488468a9a8740104286b3b3 Mon Sep 17 00:00:00 2001 From: DesertMermaid Date: Tue, 10 Dec 2024 17:27:41 -0800 Subject: [PATCH 2/2] Meow. --- mods/BLOCKS/vox_overworld/init.lua | 1 + .../vox_overworld/textures/vox_stone.png | Bin 0 -> 590 bytes .../vox_overworld/textures/vox_water.png | Bin 0 -> 590 bytes mods/CORE/vox_main/init.lua | 85 +++++++++++++++++- mods/MAPGEN/vox_biomes/init.lua | 14 +++ mods/MAPGEN/vox_biomes/mod.conf | 2 + mods/MAPGEN/vox_mapgen_core/init.lua | 17 ++++ mods/MAPGEN/vox_mapgen_core/mod.conf | 2 + mods/MAPGEN/vox_terrain_features/init.lua | 14 +++ mods/MAPGEN/vox_terrain_features/mod.conf | 2 + 10 files changed, 135 insertions(+), 2 deletions(-) create mode 100644 mods/BLOCKS/vox_overworld/textures/vox_stone.png create mode 100644 mods/BLOCKS/vox_overworld/textures/vox_water.png create mode 100644 mods/MAPGEN/vox_biomes/init.lua create mode 100644 mods/MAPGEN/vox_biomes/mod.conf create mode 100644 mods/MAPGEN/vox_mapgen_core/init.lua create mode 100644 mods/MAPGEN/vox_mapgen_core/mod.conf create mode 100644 mods/MAPGEN/vox_terrain_features/init.lua create mode 100644 mods/MAPGEN/vox_terrain_features/mod.conf diff --git a/mods/BLOCKS/vox_overworld/init.lua b/mods/BLOCKS/vox_overworld/init.lua index ce968ab..da8e53c 100644 --- a/mods/BLOCKS/vox_overworld/init.lua +++ b/mods/BLOCKS/vox_overworld/init.lua @@ -11,3 +11,4 @@ -- with this program; if not, see . --------------------------------------------------------------------------- +-- TODO: Why are we not initializing the blocks here? \ No newline at end of file diff --git a/mods/BLOCKS/vox_overworld/textures/vox_stone.png b/mods/BLOCKS/vox_overworld/textures/vox_stone.png new file mode 100644 index 0000000000000000000000000000000000000000..f13e77c37e029a6bdd405dbf3c37fa0852901e28 GIT binary patch literal 590 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85o30K$!7fntTONkS{gDGtJkRK?}&{0Adih6g(MdRC{JfL`j6N zk5zJhu3lnFep0GlMQ#CDfsK7dL1J=tYKcNpYIGK4 zGSmQ<)Z*l#%z~24{5%Dafr&}^r6smXrKOoER%wZ8rb#I&rn*Uq#wognhAD}*I`XCv7Lp=kKlR<1N|Dw!PpesOD+8Nq_ zGK4 zGSmQ<)Z*l#%z~24{5%Dafr&}^r6smXrKOoER%wZ8rb#I&rn*Uq#wognhAD}*I`XCv7Lp=kKlR<1N|Dw!PpesOD+8Nq_ zMdX%. +--------------------------------------------------------------------------- + +vox_biomes = { } \ No newline at end of file diff --git a/mods/MAPGEN/vox_biomes/mod.conf b/mods/MAPGEN/vox_biomes/mod.conf new file mode 100644 index 0000000..f219090 --- /dev/null +++ b/mods/MAPGEN/vox_biomes/mod.conf @@ -0,0 +1,2 @@ +name = vox_biomes +description = Voxelis - biomes \ No newline at end of file diff --git a/mods/MAPGEN/vox_mapgen_core/init.lua b/mods/MAPGEN/vox_mapgen_core/init.lua new file mode 100644 index 0000000..380b050 --- /dev/null +++ b/mods/MAPGEN/vox_mapgen_core/init.lua @@ -0,0 +1,17 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_mapgen_core = { } + +-- Variables + diff --git a/mods/MAPGEN/vox_mapgen_core/mod.conf b/mods/MAPGEN/vox_mapgen_core/mod.conf new file mode 100644 index 0000000..0d87de4 --- /dev/null +++ b/mods/MAPGEN/vox_mapgen_core/mod.conf @@ -0,0 +1,2 @@ +name = vox_mapgen_core +description = Voxelis - MapGen Core \ No newline at end of file diff --git a/mods/MAPGEN/vox_terrain_features/init.lua b/mods/MAPGEN/vox_terrain_features/init.lua new file mode 100644 index 0000000..8ff0487 --- /dev/null +++ b/mods/MAPGEN/vox_terrain_features/init.lua @@ -0,0 +1,14 @@ +--------------------------------------------------------------------------- +-- Voxelis - Voxel survival sandbox for Luanti +-- Copyright (C) 2024 Mad Star Studio LLC +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- You should have received a copy of the GNU General Public License along +-- with this program; if not, see . +--------------------------------------------------------------------------- + +vox_terrain_features = { } \ No newline at end of file diff --git a/mods/MAPGEN/vox_terrain_features/mod.conf b/mods/MAPGEN/vox_terrain_features/mod.conf new file mode 100644 index 0000000..fa2419f --- /dev/null +++ b/mods/MAPGEN/vox_terrain_features/mod.conf @@ -0,0 +1,2 @@ +name = vox_terrain_features +description = Voxelis - Terrain Features \ No newline at end of file