Burn Us game (MSXdev'18)
This game gives you the experience what it's like to be a member of a weird, masochistic sect. Make your wishes come true by burning yourself in the altar. Avoid the snakes, kill them if you need to, and navigate your way in the dungeons to find the lighter and the gasoline.
With its ladders, walls, enemies and puzzles to resolve, Burn Us reminds of Konami's classic "King's Valley" games. In order to add to the excitement, it features a catchy piece of music by chiptune composer Evgeny Shvaryov, a.k.a. "Royal".
msxdev18_burn_us.zip | http://www.msxdev.org/wp-content/uploads/2018/03/msxdev18_burn_us.zip |
mkdir -p package/
unzip msxdev18_burn_us.zip
mv BURNUS.rom package/
mv readme.txt package/
cat > package/BURNUS.bat << EOF
REM Look for SROM.COM in default dir
IFF EXIST %_DISK%:\SOFAROM\SROM.COM
%_DISK%:\SOFAROM\SROM.COM BURNUS.ROM
ELSE
REM Try to run it from path
IFF EXIST SROM.COM
SROM.COM BURNUS.ROM
ELSE
echo "SROM.COM not found. Install it with: 'HUB install SOFAROM'"
exit 1
ENDIFF
ENDIFF
EOF
unix2dos package/BURNUS.bat
hub install BURNUS