Created
October 16, 2022 04:17
-
-
Save kriskowal/3e7ce7bde6654df5f0ab7c27c5ea488c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"colors": { | |
"darkBlue": "#61B2E4", | |
"darkRed": "#D22F27", | |
"darkGreen": "#5C9E31", | |
"lightPurple": "#B399C8" | |
}, | |
"levels": [ | |
{ | |
"topology": "torus", | |
"chunksPerLevel": { | |
"x": 3, | |
"y": 3 | |
}, | |
"tilesPerChunk": { | |
"x": 3, | |
"y": 3 | |
}, | |
"colors": { | |
"base": "darkGreen", | |
"earth": "darkGreen", | |
"water": "darkBlue", | |
"lava": "darkRed" | |
} | |
}, | |
{ | |
"topology": "rect", | |
"size": { | |
"x": 5, | |
"y": 5 | |
}, | |
"colors": { | |
"base": "lightPurple", | |
"earth": "lightPurple", | |
"water": "darkBlue", | |
"lava": "darkRed" | |
} | |
} | |
], | |
"mechanics": { | |
"agentTypes": [ | |
{ "name": "player" }, | |
{ "name": "ladder" }, | |
{ "name": "chute" } | |
], | |
"tileTypes": [ | |
{ "name": "player", "text": "π" }, | |
{ "name": "ladder", "text": "πͺ" }, | |
{ "name": "chute", "text": "π" } | |
], | |
"actions": [ | |
{ | |
"patient": "ladder", | |
"verb": "jump", | |
"dialog": "πͺ Up you go!" | |
}, | |
{ | |
"patient": "chute", | |
"verb": "jump", | |
"dialog": "π Down you go!" | |
} | |
] | |
}, | |
"player": 0, | |
"locations": [5, 6, 93], | |
"types": [3, 4, 5], | |
"healths": [ | |
{ | |
"entity": 0, | |
"health": 5 | |
} | |
], | |
"staminas": [ | |
{ | |
"entity": 0, | |
"stamina": 5 | |
} | |
], | |
"entityTargetLocations": [ | |
{ | |
"entity": 1, | |
"location": 94 | |
}, | |
{ | |
"entity": 2, | |
"location": 5 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment