Initial commit

This commit is contained in:
tibvdm 2022-11-21 22:40:29 +01:00 committed by Tibo De Peuter
parent 2a498ff4b5
commit 9987d12f80
9 changed files with 274 additions and 0 deletions

51
levels/level2.txt Normal file
View file

@ -0,0 +1,51 @@
player: {
hp: 50,
inventory: []
}
levels: [
{
layout: {
| * * *
| * e *
| * . *
| * . *
| * . *
| * . *
| * s *
| * * *
},
items: [
{
id: "key",
x: 1,
y: 2,
name: "Sleutel",
description: "Deze sleutel kan een deur openen",
useTimes: 1,
value: 0,
actions: {
[not(inventoryFull())] retrieveItem(key),
[] leave()
}
}
],
entities: [
{
id: "door",
x: 1,
y: 4,
name: "Deur",
description: "Deze deur kan geopend worden met een sleutel",
direction: up,
actions: {
[inventoryContains(key)] useItem(key),
[] leave()
}
}
]
}
]