├── .git-cleanup-remote.config ├── .git-vendor-config ├── .gitignore ├── DESIGN.md ├── LICENSE.md ├── README.md ├── assets ├── font12x16 │ ├── console.png │ └── console_bold.png ├── font6x10 │ ├── simple.png │ └── simple.xcf ├── img200 │ └── character_model │ │ ├── bloboid_digesting.png │ │ ├── bloboid_grappling_back.png │ │ ├── bloboid_grappling_front.png │ │ ├── bloboid_large.png │ │ ├── bloboid_large_wide.png │ │ ├── bloboid_small.png │ │ ├── bloboid_small_wide.png │ │ ├── centauroid.png │ │ ├── centauroid_being_digested.png │ │ ├── centauroid_grappled.png │ │ ├── centauroid_leg_wound.png │ │ ├── centauroid_limping.png │ │ ├── character_model.xcf │ │ ├── humanoid.png │ │ ├── humanoid_being_digested.png │ │ ├── humanoid_equipped_axe.png │ │ ├── humanoid_equipped_dagger.png │ │ ├── humanoid_equipped_torch.png │ │ ├── humanoid_grappled.png │ │ ├── humanoid_leg_wound.png │ │ ├── humanoid_limping.png │ │ ├── humanoid_malaise.png │ │ ├── humanoid_pain.png │ │ ├── humanoid_shielded.png │ │ ├── kangaroid.png │ │ ├── kangaroid_being_digested.png │ │ ├── kangaroid_grappled.png │ │ ├── kangaroid_leg_wound.png │ │ ├── kangaroid_limping.png │ │ ├── quadruped.png │ │ ├── quadruped_being_digested.png │ │ ├── quadruped_grappled.png │ │ ├── quadruped_leg_wound.png │ │ └── quadruped_limping.png └── img32 │ ├── effect │ ├── death.png │ ├── equipment.png │ ├── equipped_axe.png │ ├── equipped_dagger.png │ ├── equipped_shield.png │ ├── equipped_torch.png │ ├── kick.png │ ├── limping.png │ ├── nibble_effect.xcf │ ├── nibble_effect0.png │ ├── nibble_effect1.png │ ├── nibble_effect2.png │ ├── open_close.png │ ├── pain.png │ ├── polymorph_effect0.png │ ├── polymorph_effect1.png │ ├── polymorph_effect2.png │ ├── polymorph_effect3.png │ ├── polymorph_effect4.png │ ├── polymorph_effect5.png │ ├── polymorph_effect6.png │ ├── polymorph_effect7.png │ ├── whoosh.png │ └── wounded.png │ ├── individual │ ├── air_elemental.png │ ├── ant_queen.png │ ├── ant_worker.png │ ├── bee.png │ ├── beetle.png │ ├── blob_large.png │ ├── blob_large.xcf │ ├── brown_snake.png │ ├── centaur_archer.png │ ├── centaur_archer_nocked.png │ ├── centaur_warrior.png │ ├── cobra.png │ ├── cobra_venom.png │ ├── dog.png │ ├── human.png │ ├── kangaroo.png │ ├── kangaroo.xcf │ ├── kitty.png │ ├── lich.png │ ├── lunge.png │ ├── minotaur.png │ ├── ogre.png │ ├── ogre.xcf │ ├── orc.png │ ├── pink_blob.png │ ├── player_dress_up.xcf │ ├── rat.png │ ├── rhino.xcf │ ├── rhino0.png │ ├── rhino1.png │ ├── scorpion.png │ ├── shapeshifter.png │ ├── shapeshifter.xcf │ ├── siren_land.png │ ├── siren_water.png │ ├── snake.png │ ├── tar_elemental.png │ ├── tar_elemental_throw.png │ ├── turtle.png │ ├── unseen_individual.png │ └── wood_golem.png │ ├── item │ ├── book │ │ ├── blue_book.png │ │ ├── book.xcf │ │ ├── green_book.png │ │ ├── purple_book.png │ │ ├── red_book.png │ │ ├── unseen_book.png │ │ └── yellow_book.png │ ├── potion │ │ ├── blue_potion.png │ │ ├── glittery_blue_potion.png │ │ ├── glittery_green_potion.png │ │ ├── glittery_orange_potion.png │ │ ├── glittery_purple_potion.png │ │ ├── glittery_red_potion.png │ │ ├── glittery_yellow_potion.png │ │ ├── green_potion.png │ │ ├── orange_potion.png │ │ ├── potion.xcf │ │ ├── purple_potion.png │ │ ├── red_potion.png │ │ ├── unseen_potion.png │ │ └── yellow_potion.png │ ├── shield.png │ ├── wand │ │ ├── bone_wand.png │ │ ├── copper_wand.png │ │ ├── gold_wand.png │ │ ├── plastic_wand.png │ │ ├── purple_wand.png │ │ ├── shiny_bone_wand.png │ │ ├── shiny_copper_wand.png │ │ ├── shiny_gold_wand.png │ │ ├── shiny_plastic_wand.png │ │ ├── shiny_purple_wand.png │ │ ├── unseen_wand.png │ │ └── wand.xcf │ └── weapon │ │ ├── arrow.png │ │ ├── axe.png │ │ ├── axe_shadow.png │ │ ├── battleaxe.png │ │ ├── dagger.png │ │ ├── hammer.png │ │ ├── hammer_shadow.png │ │ ├── torch.png │ │ ├── torch.xcf │ │ ├── unseen_weapon.png │ │ └── unseen_weapon.xcf │ └── map │ ├── black_alpha_square.png │ ├── bloody_water_overlay.png │ ├── brown_brick0.png │ ├── brown_brick1.png │ ├── brown_brick2.png │ ├── brown_brick3.png │ ├── brown_brick4.png │ ├── brown_brick5.png │ ├── brown_brick6.png │ ├── brown_brick7.png │ ├── bush0.png │ ├── bush1.png │ ├── bush2.png │ ├── chest.png │ ├── closed_door.png │ ├── dirt_floor0.png │ ├── dirt_floor1.png │ ├── dirt_floor2.png │ ├── dirt_floor3.png │ ├── dirt_floor4.png │ ├── dirt_floor5.png │ ├── dirt_floor6.png │ ├── dirt_floor7.png │ ├── grass0.png │ ├── grass1.png │ ├── grass2.png │ ├── gray_brick0.png │ ├── gray_brick1.png │ ├── gray_brick2.png │ ├── gray_brick3.png │ ├── hatch.png │ ├── lava0.png │ ├── lava1.png │ ├── lava2.png │ ├── lava3.png │ ├── marble_floor0.png │ ├── marble_floor1.png │ ├── marble_floor2.png │ ├── marble_floor3.png │ ├── marble_floor4.png │ ├── marble_floor5.png │ ├── open_door.png │ ├── polymorph_trap.png │ ├── polymorph_trap_wide0.png │ ├── polymorph_trap_wide1.png │ ├── sand0.png │ ├── sand1.png │ ├── sand2.png │ ├── sand3.png │ ├── sand4.png │ ├── sand5.png │ ├── sand6.png │ ├── sand7.png │ ├── sandstone_floor0.png │ ├── sandstone_floor1.png │ ├── sandstone_floor2.png │ ├── sandstone_floor3.png │ ├── sandstone_floor4.png │ ├── sandstone_floor5.png │ ├── sandstone_floor6.png │ ├── sandstone_floor7.png │ ├── sandstone_floor8.png │ ├── sandstone_floor9.png │ ├── sandstone_wall0.png │ ├── sandstone_wall1.png │ ├── sandstone_wall2.png │ ├── sandstone_wall3.png │ ├── sandstone_wall4.png │ ├── sandstone_wall5.png │ ├── sandstone_wall6.png │ ├── sandstone_wall7.png │ ├── sandstone_wall8.png │ ├── sandstone_wall9.png │ ├── sandstone_wall_cracked.png │ ├── stairs_down.png │ ├── statue_angel.png │ ├── tree.xcf │ ├── tree0.png │ ├── tree1.png │ ├── tree2.png │ ├── tree3.png │ ├── unknown_floor.png │ ├── unknown_wall.png │ ├── water0.png │ ├── water1.png │ ├── water_deep0.png │ ├── water_deep1.png │ ├── water_deep10.png │ ├── water_deep11.png │ ├── water_deep2.png │ ├── water_deep3.png │ ├── water_deep4.png │ ├── water_deep5.png │ ├── water_deep6.png │ ├── water_deep7.png │ ├── water_deep8.png │ ├── water_deep9.png │ ├── water_edge0.png │ ├── water_edge1.png │ ├── water_edge2.png │ ├── water_edge3.png │ ├── water_edge4.png │ ├── water_edge5.png │ ├── water_edge6.png │ └── water_edge7.png ├── deps ├── git-vendor │ └── git-vendor ├── simplepng.py │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ └── simplepng.py └── util │ └── git-cleanup-remote ├── src ├── client │ ├── FancyClient.zig │ ├── game_engine_client.zig │ └── main.zig ├── core │ ├── debug.zig │ ├── game_logic.zig │ ├── geometry.zig │ ├── matrix.zig │ ├── old_std_atomic_queue.zig │ └── protocol.zig ├── gui │ ├── InputEngine.zig │ ├── SaveFile.zig │ ├── game_input.zig │ ├── gui.zig │ ├── gui_main.zig │ ├── menus.zig │ ├── render.zig │ ├── sdl.zig │ └── textures.zig ├── index.zig └── server │ ├── ai.zig │ ├── game_engine.zig │ ├── game_model.zig │ ├── game_server.zig │ ├── map_gen.zig │ └── server_main.zig └── tools └── compile_spritesheet.py /.git-cleanup-remote.config: -------------------------------------------------------------------------------- 1 | {"keep-branches":["4.6.0-wip"]} 2 | -------------------------------------------------------------------------------- /.git-vendor-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/.git-vendor-config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/.gitignore -------------------------------------------------------------------------------- /DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/DESIGN.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/README.md -------------------------------------------------------------------------------- /assets/font12x16/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/font12x16/console.png -------------------------------------------------------------------------------- /assets/font12x16/console_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/font12x16/console_bold.png -------------------------------------------------------------------------------- /assets/font6x10/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/font6x10/simple.png -------------------------------------------------------------------------------- /assets/font6x10/simple.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/font6x10/simple.xcf -------------------------------------------------------------------------------- /assets/img200/character_model/bloboid_digesting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/bloboid_digesting.png -------------------------------------------------------------------------------- /assets/img200/character_model/bloboid_grappling_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/bloboid_grappling_back.png -------------------------------------------------------------------------------- /assets/img200/character_model/bloboid_grappling_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/bloboid_grappling_front.png -------------------------------------------------------------------------------- /assets/img200/character_model/bloboid_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/bloboid_large.png -------------------------------------------------------------------------------- /assets/img200/character_model/bloboid_large_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/bloboid_large_wide.png -------------------------------------------------------------------------------- /assets/img200/character_model/bloboid_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/bloboid_small.png -------------------------------------------------------------------------------- /assets/img200/character_model/bloboid_small_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/bloboid_small_wide.png -------------------------------------------------------------------------------- /assets/img200/character_model/centauroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/centauroid.png -------------------------------------------------------------------------------- /assets/img200/character_model/centauroid_being_digested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/centauroid_being_digested.png -------------------------------------------------------------------------------- /assets/img200/character_model/centauroid_grappled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/centauroid_grappled.png -------------------------------------------------------------------------------- /assets/img200/character_model/centauroid_leg_wound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/centauroid_leg_wound.png -------------------------------------------------------------------------------- /assets/img200/character_model/centauroid_limping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/centauroid_limping.png -------------------------------------------------------------------------------- /assets/img200/character_model/character_model.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/character_model.xcf -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid.png -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid_being_digested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid_being_digested.png -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid_equipped_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid_equipped_axe.png -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid_equipped_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid_equipped_dagger.png -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid_equipped_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid_equipped_torch.png -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid_grappled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid_grappled.png -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid_leg_wound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid_leg_wound.png -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid_limping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid_limping.png -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid_malaise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid_malaise.png -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid_pain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid_pain.png -------------------------------------------------------------------------------- /assets/img200/character_model/humanoid_shielded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/humanoid_shielded.png -------------------------------------------------------------------------------- /assets/img200/character_model/kangaroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/kangaroid.png -------------------------------------------------------------------------------- /assets/img200/character_model/kangaroid_being_digested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/kangaroid_being_digested.png -------------------------------------------------------------------------------- /assets/img200/character_model/kangaroid_grappled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/kangaroid_grappled.png -------------------------------------------------------------------------------- /assets/img200/character_model/kangaroid_leg_wound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/kangaroid_leg_wound.png -------------------------------------------------------------------------------- /assets/img200/character_model/kangaroid_limping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/kangaroid_limping.png -------------------------------------------------------------------------------- /assets/img200/character_model/quadruped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/quadruped.png -------------------------------------------------------------------------------- /assets/img200/character_model/quadruped_being_digested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/quadruped_being_digested.png -------------------------------------------------------------------------------- /assets/img200/character_model/quadruped_grappled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/quadruped_grappled.png -------------------------------------------------------------------------------- /assets/img200/character_model/quadruped_leg_wound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/quadruped_leg_wound.png -------------------------------------------------------------------------------- /assets/img200/character_model/quadruped_limping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img200/character_model/quadruped_limping.png -------------------------------------------------------------------------------- /assets/img32/effect/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/death.png -------------------------------------------------------------------------------- /assets/img32/effect/equipment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/equipment.png -------------------------------------------------------------------------------- /assets/img32/effect/equipped_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/equipped_axe.png -------------------------------------------------------------------------------- /assets/img32/effect/equipped_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/equipped_dagger.png -------------------------------------------------------------------------------- /assets/img32/effect/equipped_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/equipped_shield.png -------------------------------------------------------------------------------- /assets/img32/effect/equipped_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/equipped_torch.png -------------------------------------------------------------------------------- /assets/img32/effect/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/kick.png -------------------------------------------------------------------------------- /assets/img32/effect/limping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/limping.png -------------------------------------------------------------------------------- /assets/img32/effect/nibble_effect.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/nibble_effect.xcf -------------------------------------------------------------------------------- /assets/img32/effect/nibble_effect0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/nibble_effect0.png -------------------------------------------------------------------------------- /assets/img32/effect/nibble_effect1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/nibble_effect1.png -------------------------------------------------------------------------------- /assets/img32/effect/nibble_effect2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/nibble_effect2.png -------------------------------------------------------------------------------- /assets/img32/effect/open_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/open_close.png -------------------------------------------------------------------------------- /assets/img32/effect/pain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/pain.png -------------------------------------------------------------------------------- /assets/img32/effect/polymorph_effect0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/polymorph_effect0.png -------------------------------------------------------------------------------- /assets/img32/effect/polymorph_effect1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/polymorph_effect1.png -------------------------------------------------------------------------------- /assets/img32/effect/polymorph_effect2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/polymorph_effect2.png -------------------------------------------------------------------------------- /assets/img32/effect/polymorph_effect3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/polymorph_effect3.png -------------------------------------------------------------------------------- /assets/img32/effect/polymorph_effect4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/polymorph_effect4.png -------------------------------------------------------------------------------- /assets/img32/effect/polymorph_effect5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/polymorph_effect5.png -------------------------------------------------------------------------------- /assets/img32/effect/polymorph_effect6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/polymorph_effect6.png -------------------------------------------------------------------------------- /assets/img32/effect/polymorph_effect7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/polymorph_effect7.png -------------------------------------------------------------------------------- /assets/img32/effect/whoosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/whoosh.png -------------------------------------------------------------------------------- /assets/img32/effect/wounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/effect/wounded.png -------------------------------------------------------------------------------- /assets/img32/individual/air_elemental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/air_elemental.png -------------------------------------------------------------------------------- /assets/img32/individual/ant_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/ant_queen.png -------------------------------------------------------------------------------- /assets/img32/individual/ant_worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/ant_worker.png -------------------------------------------------------------------------------- /assets/img32/individual/bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/bee.png -------------------------------------------------------------------------------- /assets/img32/individual/beetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/beetle.png -------------------------------------------------------------------------------- /assets/img32/individual/blob_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/blob_large.png -------------------------------------------------------------------------------- /assets/img32/individual/blob_large.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/blob_large.xcf -------------------------------------------------------------------------------- /assets/img32/individual/brown_snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/brown_snake.png -------------------------------------------------------------------------------- /assets/img32/individual/centaur_archer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/centaur_archer.png -------------------------------------------------------------------------------- /assets/img32/individual/centaur_archer_nocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/centaur_archer_nocked.png -------------------------------------------------------------------------------- /assets/img32/individual/centaur_warrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/centaur_warrior.png -------------------------------------------------------------------------------- /assets/img32/individual/cobra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/cobra.png -------------------------------------------------------------------------------- /assets/img32/individual/cobra_venom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/cobra_venom.png -------------------------------------------------------------------------------- /assets/img32/individual/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/dog.png -------------------------------------------------------------------------------- /assets/img32/individual/human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/human.png -------------------------------------------------------------------------------- /assets/img32/individual/kangaroo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/kangaroo.png -------------------------------------------------------------------------------- /assets/img32/individual/kangaroo.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/kangaroo.xcf -------------------------------------------------------------------------------- /assets/img32/individual/kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/kitty.png -------------------------------------------------------------------------------- /assets/img32/individual/lich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/lich.png -------------------------------------------------------------------------------- /assets/img32/individual/lunge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/lunge.png -------------------------------------------------------------------------------- /assets/img32/individual/minotaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/minotaur.png -------------------------------------------------------------------------------- /assets/img32/individual/ogre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/ogre.png -------------------------------------------------------------------------------- /assets/img32/individual/ogre.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/ogre.xcf -------------------------------------------------------------------------------- /assets/img32/individual/orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/orc.png -------------------------------------------------------------------------------- /assets/img32/individual/pink_blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/pink_blob.png -------------------------------------------------------------------------------- /assets/img32/individual/player_dress_up.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/player_dress_up.xcf -------------------------------------------------------------------------------- /assets/img32/individual/rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/rat.png -------------------------------------------------------------------------------- /assets/img32/individual/rhino.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/rhino.xcf -------------------------------------------------------------------------------- /assets/img32/individual/rhino0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/rhino0.png -------------------------------------------------------------------------------- /assets/img32/individual/rhino1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/rhino1.png -------------------------------------------------------------------------------- /assets/img32/individual/scorpion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/scorpion.png -------------------------------------------------------------------------------- /assets/img32/individual/shapeshifter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/shapeshifter.png -------------------------------------------------------------------------------- /assets/img32/individual/shapeshifter.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/shapeshifter.xcf -------------------------------------------------------------------------------- /assets/img32/individual/siren_land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/siren_land.png -------------------------------------------------------------------------------- /assets/img32/individual/siren_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/siren_water.png -------------------------------------------------------------------------------- /assets/img32/individual/snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/snake.png -------------------------------------------------------------------------------- /assets/img32/individual/tar_elemental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/tar_elemental.png -------------------------------------------------------------------------------- /assets/img32/individual/tar_elemental_throw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/tar_elemental_throw.png -------------------------------------------------------------------------------- /assets/img32/individual/turtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/turtle.png -------------------------------------------------------------------------------- /assets/img32/individual/unseen_individual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/unseen_individual.png -------------------------------------------------------------------------------- /assets/img32/individual/wood_golem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/individual/wood_golem.png -------------------------------------------------------------------------------- /assets/img32/item/book/blue_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/book/blue_book.png -------------------------------------------------------------------------------- /assets/img32/item/book/book.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/book/book.xcf -------------------------------------------------------------------------------- /assets/img32/item/book/green_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/book/green_book.png -------------------------------------------------------------------------------- /assets/img32/item/book/purple_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/book/purple_book.png -------------------------------------------------------------------------------- /assets/img32/item/book/red_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/book/red_book.png -------------------------------------------------------------------------------- /assets/img32/item/book/unseen_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/book/unseen_book.png -------------------------------------------------------------------------------- /assets/img32/item/book/yellow_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/book/yellow_book.png -------------------------------------------------------------------------------- /assets/img32/item/potion/blue_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/blue_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/glittery_blue_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/glittery_blue_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/glittery_green_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/glittery_green_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/glittery_orange_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/glittery_orange_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/glittery_purple_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/glittery_purple_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/glittery_red_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/glittery_red_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/glittery_yellow_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/glittery_yellow_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/green_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/green_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/orange_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/orange_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/potion.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/potion.xcf -------------------------------------------------------------------------------- /assets/img32/item/potion/purple_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/purple_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/red_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/red_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/unseen_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/unseen_potion.png -------------------------------------------------------------------------------- /assets/img32/item/potion/yellow_potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/potion/yellow_potion.png -------------------------------------------------------------------------------- /assets/img32/item/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/shield.png -------------------------------------------------------------------------------- /assets/img32/item/wand/bone_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/bone_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/copper_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/copper_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/gold_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/gold_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/plastic_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/plastic_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/purple_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/purple_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/shiny_bone_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/shiny_bone_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/shiny_copper_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/shiny_copper_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/shiny_gold_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/shiny_gold_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/shiny_plastic_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/shiny_plastic_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/shiny_purple_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/shiny_purple_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/unseen_wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/unseen_wand.png -------------------------------------------------------------------------------- /assets/img32/item/wand/wand.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/wand/wand.xcf -------------------------------------------------------------------------------- /assets/img32/item/weapon/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/arrow.png -------------------------------------------------------------------------------- /assets/img32/item/weapon/axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/axe.png -------------------------------------------------------------------------------- /assets/img32/item/weapon/axe_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/axe_shadow.png -------------------------------------------------------------------------------- /assets/img32/item/weapon/battleaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/battleaxe.png -------------------------------------------------------------------------------- /assets/img32/item/weapon/dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/dagger.png -------------------------------------------------------------------------------- /assets/img32/item/weapon/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/hammer.png -------------------------------------------------------------------------------- /assets/img32/item/weapon/hammer_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/hammer_shadow.png -------------------------------------------------------------------------------- /assets/img32/item/weapon/torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/torch.png -------------------------------------------------------------------------------- /assets/img32/item/weapon/torch.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/torch.xcf -------------------------------------------------------------------------------- /assets/img32/item/weapon/unseen_weapon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/unseen_weapon.png -------------------------------------------------------------------------------- /assets/img32/item/weapon/unseen_weapon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/item/weapon/unseen_weapon.xcf -------------------------------------------------------------------------------- /assets/img32/map/black_alpha_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/black_alpha_square.png -------------------------------------------------------------------------------- /assets/img32/map/bloody_water_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/bloody_water_overlay.png -------------------------------------------------------------------------------- /assets/img32/map/brown_brick0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/brown_brick0.png -------------------------------------------------------------------------------- /assets/img32/map/brown_brick1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/brown_brick1.png -------------------------------------------------------------------------------- /assets/img32/map/brown_brick2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/brown_brick2.png -------------------------------------------------------------------------------- /assets/img32/map/brown_brick3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/brown_brick3.png -------------------------------------------------------------------------------- /assets/img32/map/brown_brick4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/brown_brick4.png -------------------------------------------------------------------------------- /assets/img32/map/brown_brick5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/brown_brick5.png -------------------------------------------------------------------------------- /assets/img32/map/brown_brick6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/brown_brick6.png -------------------------------------------------------------------------------- /assets/img32/map/brown_brick7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/brown_brick7.png -------------------------------------------------------------------------------- /assets/img32/map/bush0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/bush0.png -------------------------------------------------------------------------------- /assets/img32/map/bush1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/bush1.png -------------------------------------------------------------------------------- /assets/img32/map/bush2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/bush2.png -------------------------------------------------------------------------------- /assets/img32/map/chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/chest.png -------------------------------------------------------------------------------- /assets/img32/map/closed_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/closed_door.png -------------------------------------------------------------------------------- /assets/img32/map/dirt_floor0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/dirt_floor0.png -------------------------------------------------------------------------------- /assets/img32/map/dirt_floor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/dirt_floor1.png -------------------------------------------------------------------------------- /assets/img32/map/dirt_floor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/dirt_floor2.png -------------------------------------------------------------------------------- /assets/img32/map/dirt_floor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/dirt_floor3.png -------------------------------------------------------------------------------- /assets/img32/map/dirt_floor4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/dirt_floor4.png -------------------------------------------------------------------------------- /assets/img32/map/dirt_floor5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/dirt_floor5.png -------------------------------------------------------------------------------- /assets/img32/map/dirt_floor6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/dirt_floor6.png -------------------------------------------------------------------------------- /assets/img32/map/dirt_floor7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/dirt_floor7.png -------------------------------------------------------------------------------- /assets/img32/map/grass0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/grass0.png -------------------------------------------------------------------------------- /assets/img32/map/grass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/grass1.png -------------------------------------------------------------------------------- /assets/img32/map/grass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/grass2.png -------------------------------------------------------------------------------- /assets/img32/map/gray_brick0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/gray_brick0.png -------------------------------------------------------------------------------- /assets/img32/map/gray_brick1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/gray_brick1.png -------------------------------------------------------------------------------- /assets/img32/map/gray_brick2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/gray_brick2.png -------------------------------------------------------------------------------- /assets/img32/map/gray_brick3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/gray_brick3.png -------------------------------------------------------------------------------- /assets/img32/map/hatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/hatch.png -------------------------------------------------------------------------------- /assets/img32/map/lava0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/lava0.png -------------------------------------------------------------------------------- /assets/img32/map/lava1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/lava1.png -------------------------------------------------------------------------------- /assets/img32/map/lava2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/lava2.png -------------------------------------------------------------------------------- /assets/img32/map/lava3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/lava3.png -------------------------------------------------------------------------------- /assets/img32/map/marble_floor0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/marble_floor0.png -------------------------------------------------------------------------------- /assets/img32/map/marble_floor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/marble_floor1.png -------------------------------------------------------------------------------- /assets/img32/map/marble_floor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/marble_floor2.png -------------------------------------------------------------------------------- /assets/img32/map/marble_floor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/marble_floor3.png -------------------------------------------------------------------------------- /assets/img32/map/marble_floor4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/marble_floor4.png -------------------------------------------------------------------------------- /assets/img32/map/marble_floor5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/marble_floor5.png -------------------------------------------------------------------------------- /assets/img32/map/open_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/open_door.png -------------------------------------------------------------------------------- /assets/img32/map/polymorph_trap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/polymorph_trap.png -------------------------------------------------------------------------------- /assets/img32/map/polymorph_trap_wide0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/polymorph_trap_wide0.png -------------------------------------------------------------------------------- /assets/img32/map/polymorph_trap_wide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/polymorph_trap_wide1.png -------------------------------------------------------------------------------- /assets/img32/map/sand0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sand0.png -------------------------------------------------------------------------------- /assets/img32/map/sand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sand1.png -------------------------------------------------------------------------------- /assets/img32/map/sand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sand2.png -------------------------------------------------------------------------------- /assets/img32/map/sand3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sand3.png -------------------------------------------------------------------------------- /assets/img32/map/sand4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sand4.png -------------------------------------------------------------------------------- /assets/img32/map/sand5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sand5.png -------------------------------------------------------------------------------- /assets/img32/map/sand6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sand6.png -------------------------------------------------------------------------------- /assets/img32/map/sand7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sand7.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_floor0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_floor0.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_floor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_floor1.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_floor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_floor2.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_floor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_floor3.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_floor4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_floor4.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_floor5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_floor5.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_floor6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_floor6.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_floor7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_floor7.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_floor8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_floor8.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_floor9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_floor9.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall0.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall1.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall2.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall3.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall4.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall5.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall6.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall7.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall8.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall9.png -------------------------------------------------------------------------------- /assets/img32/map/sandstone_wall_cracked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/sandstone_wall_cracked.png -------------------------------------------------------------------------------- /assets/img32/map/stairs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/stairs_down.png -------------------------------------------------------------------------------- /assets/img32/map/statue_angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/statue_angel.png -------------------------------------------------------------------------------- /assets/img32/map/tree.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/tree.xcf -------------------------------------------------------------------------------- /assets/img32/map/tree0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/tree0.png -------------------------------------------------------------------------------- /assets/img32/map/tree1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/tree1.png -------------------------------------------------------------------------------- /assets/img32/map/tree2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/tree2.png -------------------------------------------------------------------------------- /assets/img32/map/tree3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/tree3.png -------------------------------------------------------------------------------- /assets/img32/map/unknown_floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/unknown_floor.png -------------------------------------------------------------------------------- /assets/img32/map/unknown_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/unknown_wall.png -------------------------------------------------------------------------------- /assets/img32/map/water0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water0.png -------------------------------------------------------------------------------- /assets/img32/map/water1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water1.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep0.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep1.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep10.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep11.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep2.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep3.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep4.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep5.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep6.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep7.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep8.png -------------------------------------------------------------------------------- /assets/img32/map/water_deep9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_deep9.png -------------------------------------------------------------------------------- /assets/img32/map/water_edge0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_edge0.png -------------------------------------------------------------------------------- /assets/img32/map/water_edge1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_edge1.png -------------------------------------------------------------------------------- /assets/img32/map/water_edge2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_edge2.png -------------------------------------------------------------------------------- /assets/img32/map/water_edge3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_edge3.png -------------------------------------------------------------------------------- /assets/img32/map/water_edge4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_edge4.png -------------------------------------------------------------------------------- /assets/img32/map/water_edge5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_edge5.png -------------------------------------------------------------------------------- /assets/img32/map/water_edge6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_edge6.png -------------------------------------------------------------------------------- /assets/img32/map/water_edge7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/assets/img32/map/water_edge7.png -------------------------------------------------------------------------------- /deps/git-vendor/git-vendor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/deps/git-vendor/git-vendor -------------------------------------------------------------------------------- /deps/simplepng.py/.gitignore: -------------------------------------------------------------------------------- 1 | /__pycache__/ 2 | -------------------------------------------------------------------------------- /deps/simplepng.py/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/deps/simplepng.py/LICENSE -------------------------------------------------------------------------------- /deps/simplepng.py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/deps/simplepng.py/README.md -------------------------------------------------------------------------------- /deps/simplepng.py/simplepng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/deps/simplepng.py/simplepng.py -------------------------------------------------------------------------------- /deps/util/git-cleanup-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/deps/util/git-cleanup-remote -------------------------------------------------------------------------------- /src/client/FancyClient.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/client/FancyClient.zig -------------------------------------------------------------------------------- /src/client/game_engine_client.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/client/game_engine_client.zig -------------------------------------------------------------------------------- /src/client/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/client/main.zig -------------------------------------------------------------------------------- /src/core/debug.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/core/debug.zig -------------------------------------------------------------------------------- /src/core/game_logic.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/core/game_logic.zig -------------------------------------------------------------------------------- /src/core/geometry.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/core/geometry.zig -------------------------------------------------------------------------------- /src/core/matrix.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/core/matrix.zig -------------------------------------------------------------------------------- /src/core/old_std_atomic_queue.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/core/old_std_atomic_queue.zig -------------------------------------------------------------------------------- /src/core/protocol.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/core/protocol.zig -------------------------------------------------------------------------------- /src/gui/InputEngine.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/gui/InputEngine.zig -------------------------------------------------------------------------------- /src/gui/SaveFile.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/gui/SaveFile.zig -------------------------------------------------------------------------------- /src/gui/game_input.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/gui/game_input.zig -------------------------------------------------------------------------------- /src/gui/gui.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/gui/gui.zig -------------------------------------------------------------------------------- /src/gui/gui_main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/gui/gui_main.zig -------------------------------------------------------------------------------- /src/gui/menus.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/gui/menus.zig -------------------------------------------------------------------------------- /src/gui/render.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/gui/render.zig -------------------------------------------------------------------------------- /src/gui/sdl.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/gui/sdl.zig -------------------------------------------------------------------------------- /src/gui/textures.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/gui/textures.zig -------------------------------------------------------------------------------- /src/index.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/index.zig -------------------------------------------------------------------------------- /src/server/ai.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/server/ai.zig -------------------------------------------------------------------------------- /src/server/game_engine.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/server/game_engine.zig -------------------------------------------------------------------------------- /src/server/game_model.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/server/game_model.zig -------------------------------------------------------------------------------- /src/server/game_server.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/server/game_server.zig -------------------------------------------------------------------------------- /src/server/map_gen.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/server/map_gen.zig -------------------------------------------------------------------------------- /src/server/server_main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/src/server/server_main.zig -------------------------------------------------------------------------------- /tools/compile_spritesheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejoshwolfe/legend-of-swarkland/HEAD/tools/compile_spritesheet.py --------------------------------------------------------------------------------