Go to file
benrob0329 9d7d682b30 Add Ceiling With WIP Texture
Tweak colors and light-levels
Fix warehouse lights having white-edge
2019-11-11 01:22:18 -05:00
.vscode Fix Some VsCode Warnings 2019-10-31 20:31:39 -04:00
menu Currently Broken, but making progress. 2019-05-20 19:25:44 -04:00
mods Add Ceiling With WIP Texture 2019-11-11 01:22:18 -05:00
.gitignore Redo Warehouse Light Models and Textures 2019-11-10 22:16:06 -05:00
LICENSE Add LICENSE 2019-05-21 18:02:20 +00:00
NOTICE Add NOTICE 2019-06-27 19:00:30 -04:00
README.md Add README.md 2019-05-22 22:52:38 +00:00
game.conf Rewrite Mapgen In Lua (Mostly), Add Row Signs In The Warehouse 2019-08-27 15:40:03 -04:00
minetest.conf Set Static Spawn Until Spawning System Exists 2019-08-30 01:47:22 -04:00

README.md

The Infinite IKEA (For Minetest)

This is a pre-alpha game for the Minetest game engine focussed around implementing an accurate depiction of SCP-3008, while keeping with the Open Source heritage of the SCP Wiki itself.

Contributing

If you would like to contribute to the project, take a look at the issue tracker for information about that is currently on the TODO. Contributions to the Wiki regarding any implemented game-play are also appreciated.

All code is licensed under an Apache 2.0 license unless otherwise noted.

All media (anything not code) is licensed under a Creative Commons Attribution 4.0 International License unless otherwise noted

Textures

All textures should use colors from GIMP's "Caramel" pallette whenever possible. When the colors there won't do the trick, similar colors should be used. Generally changing only the hue or only the brightness will keep a similar feel with the rest of the colors.

Code Style

Generally, standard Minetest Mod code styling should be used. Try to match what you see, but here are some bullet points for it:

  • Use 1 Tab for each indentation level (you can change how big the tabs are in your own editor, but make sure its a "hard tab")
  • Strings Should Always Be Encased In Double Quotes
  • Commas after every entry in any multi-item table
  • The closing brackets for registrations (node, item, etc) should be on their own line, and on the same indentation level as the definition function.