Skip to content

Commit

Permalink
idTech0 stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
dashodanger committed May 9, 2024
1 parent fb89097 commit d2aa82e
Show file tree
Hide file tree
Showing 10 changed files with 10,871 additions and 9 deletions.
2 changes: 1 addition & 1 deletion engines/idtech.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ OB_ENGINES["idtech_0"] =

priority = 100,

game = {wolf=1, noah=1},
game = {wolf=1, noah=1, obc=1, blake=1},

tables =
{
Expand Down
58 changes: 58 additions & 0 deletions games/blake/base.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
------------------------------------------------------------------------
-- Base File for Blake Stone
------------------------------------------------------------------------
--
-- Oblige Level Maker
--
-- Copyright (C) 2006-2017 Andrew Apted
-- Copyright (C) 2008 Sam Trenholme
--
-- 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 2,
-- of the License, or (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
------------------------------------------------------------------------

BLAKE = { }

gui.import("factory")

-- These empty tables are needed not to throw errors in obsidian.lua

BLAKE.PARAMETERS = { }

BLAKE.THEMES = { }

BLAKE.ROOM_THEMES = { }

BLAKE.ROOMS = { }

------------------------------------------------------------

OB_GAMES["blake"] =
{
label = _("Blake Stone 1"),
priority = 25,

engine = "idtech_0",
format = "wolf3d",

game_dir = "blake",

tables =
{
BLAKE
},

hooks =
{
factory_setup = BLAKE.factory_setup,
},
}

Loading

0 comments on commit d2aa82e

Please sign in to comment.