Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

3
Task/RCRPG/00-META.yaml Normal file
View file

@ -0,0 +1,3 @@
---
from: http://rosettacode.org/wiki/RCRPG
note: Games

11
Task/RCRPG/00-TASK.txt Normal file
View file

@ -0,0 +1,11 @@
Create a simple interactive game which incorporates the following features:
* room-based navigation in three integer dimensions (x,y,z)
* player inventory
* three types of item: sledge, gold and ladder
* a goal coordinate
Use of the sledge should be required to create a passage between rooms. The ladder should be present in a room (but not held by the player), in order for the player to access the room above him. The gold need not have a function.
This project is based on [http://web.archive.org/web/20080212201605/http://shortcircuit.us/muddy-kinda-like-a-mud-but-single-player/ this blog post] by [[User:Short Circuit|Michael Mol]], and the Perl version comes from there.