Go to file
Gerold55 d35a67b25c
Merge pull request #12 from archfan7411/thirst
Make all factory nodes diggable by bone pickaxe
2019-04-13 11:06:28 -04:00
menu Add files via upload 2019-04-05 16:25:27 -04:00
mods Merge pull request #12 from archfan7411/thirst 2019-04-13 11:06:28 -04:00
CONTRIBUTING Add files via upload 2019-03-07 18:06:08 -05:00
CREDITS.md Add a few people to the credits 2019-04-12 15:24:03 -04:00
LICENSE Add files via upload 2019-03-07 18:06:08 -05:00
README.md Rename README to README.md 2019-04-04 22:42:59 -04:00
game.conf Add files via upload 2019-03-07 18:06:08 -05:00

README.md

======================================================================== CORE DESIGN PRINCIPLES

  • Do as much in node-space in the world as possible.
    • Minimize use of off-grid entities.
    • Avoid encapsulating things in inventories, machines, GUIs.
    • Crafting and transforming in-world.
  • Minimal set of primitive composable functions.
    • Each node should do one job (or one part of a job).
    • Only include the most primitive, fungible components.
    • Avoid redundant functionality, include fewest possible different elements.
    • Complex emergent gameplay by combining simple nodes.
  • Challenging and constrained gameplay.
    • Limited inventories, very restricted item storage, e.g. one stack per node.
    • Large, complex machines to design and build for resource transformations.
    • Subtle environmental hazards, like deadfalls and pestilence.
  • Rich, subtle interactions.
    • Digging, placing, punching and battering.
    • Different effects from different tools (including empty hand).
    • Different faces of node may have different effects.
  • Focus on puzzle-oriented single-player/cooperative gameplay.
    • Avoid dependence on action, combat, PvP.
    • Slow-moving hazards, players have a chance to think and plan.
    • Acessible for slow reflexes, slow networks, mobile devices.

........................................................................