Go to file
rekkabell 3d25060585 update floor tiles 2023-01-26 14:28:38 -08:00
etc update floor tiles 2023-01-26 14:28:38 -08:00
src Starting gate event 2023-01-26 14:24:17 -08:00
.gitignore Added walls loading 2023-01-24 19:24:21 -08:00
LICENSE Init 2023-01-22 19:09:21 -08:00
README.md Flooring 2023-01-23 09:56:42 -08:00
build.sh Added steps 2023-01-24 17:15:18 -08:00

README.md

Oquonie

Oquonie is a puzzle game, written in Uxntal.

Notes

room = new Room(1)
room.floors = [0, 25, 2, 2, 8, 4, 2, 2, 2]
room.walls = [0, 5, 2, 2, 12, 15]
room.steps = [0, 0, 0, 0, 0, 0]
room.audio = 'lobby'
room.theme = 'white'
room.addEvent(new Blocker(1, 1, 10))
room.addEvent(new PillarBase(1, -1, 'nephtaline'))
room.addEvent(new Gate('nephtaline', 0, 2, 40, -1, -1)) // 1 - 40
room.addEvent(new Door(2, 0, 2, -1, 0))
this.rooms[1] = room

Build

You must have an Uxn assembler and emulator.

uxnasm src/oquonie.tal bin/oquonie.rom
uxnemu bin/oquonie.rom

If do not wish to assemble it yourself, you can download oquonie.rom.

builds.sr.ht status

Push

Pushing to the itch.io store.

~/Applications/butler push bin/oquonie.rom hundredrabbits/oquonie:uxn

Support