
Lisiy
This game is from ldjam.com, which is currently unavailable.
You can try viewing the original page on Web Archive (may not load correctly).
You can try viewing the original page on Web Archive (may not load correctly).
---
2. You landing, it hurts, but finnaly you feel ground under legs
3. Now another problem the ancient creature orders you to bring him food, otherwise he will devour you
4. How will you get out?
---
* if you find a delicious food and feed it to him, maybe he'll let you go
* Don't make him starve or he will
* Don't piss him off!!
```
1. while (W/A/S/D.status == pressed){
player.move();
}
2. while (LMB.status == pressed){
player.grab(object);
}
3. if (LMB.status == clicked){
player.interact(object);
}
```
---
Situation:
1. You are falling down to the long pipe2. You landing, it hurts, but finnaly you feel ground under legs
3. Now another problem the ancient creature orders you to bring him food, otherwise he will devour you
4. How will you get out?
---
Gameplay
* Grab food -> take it to pit -> drop it -> he eats food -> ??? -> youre not dead! -> repeat* if you find a delicious food and feed it to him, maybe he'll let you go
* Don't make him starve or he will
* Don't piss him off!!
Controls
```
1. while (W/A/S/D.status == pressed){
player.move();
}
2. while (LMB.status == pressed){
player.grab(object);
}
3. if (LMB.status == clicked){
player.interact(object);
}
```
---