Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 319 Bytes

game.md

File metadata and controls

28 lines (25 loc) · 319 Bytes

Game Messages

Start game

{
    "status": "game",
    "action": "start"
}

Info about area

{
    "status": "game",
    "action": "info",
    "ticks_left": TICK, // int
    "npcs_left": COUNT // int
}

Game over

{
    "status": "game",
    "action": "over",
    "winner": NAME
}