├── .gitignore ├── .idea ├── caches │ └── build_file_checksums.ser ├── encodings.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── .sops.yaml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── License.txt ├── OGL1.0a.txt ├── README.md ├── adventuresmith-cli ├── .gitignore ├── build.gradle └── src │ ├── dist │ └── examples │ │ ├── items.meta.yml │ │ ├── items.yml │ │ ├── magic.meta.yml │ │ ├── magic.yml │ │ ├── spells.fr.yml │ │ ├── spells.meta.fr.yml │ │ ├── spells.meta.yml │ │ ├── spells.yml │ │ └── wizard_names.yml │ └── main │ ├── kotlin │ └── org │ │ └── stevesea │ │ └── adventuresmith │ │ └── cli │ │ └── AdventuresmithCli.kt │ └── resources │ └── logback.xml ├── adventuresmith-core ├── .gitignore ├── build.gradle └── src │ ├── main │ ├── kotlin │ │ └── org │ │ │ └── stevesea │ │ │ └── adventuresmith │ │ │ └── core │ │ │ ├── AdventureSmithModule.kt │ │ │ ├── Generator.kt │ │ │ ├── RangeMap.kt │ │ │ ├── RangeMapDeserializer.kt │ │ │ ├── Shuffler.kt │ │ │ ├── Utils.kt │ │ │ └── dice_roller │ │ │ ├── CoriolisDiceGenerator.kt │ │ │ ├── CustomizeableDiceGenerator.kt │ │ │ ├── Dice.kt │ │ │ ├── DiceParser.kt │ │ │ ├── EotEDiceGenerator.kt │ │ │ ├── ExplodingDiceGenerator.kt │ │ │ ├── FudgeDiceGenerator.kt │ │ │ └── MYZDiceGenerator.kt │ └── resources │ │ └── org │ │ └── stevesea │ │ └── adventuresmith │ │ └── core │ │ ├── augmented_reality │ │ ├── alternative_business.meta.yml │ │ ├── alternative_business.yml │ │ ├── area_events.meta.yml │ │ ├── area_events.yml │ │ ├── armed_response.yml │ │ ├── augmented_reality.meta.yml │ │ ├── augmented_reality.yml │ │ ├── backup.meta.yml │ │ ├── backup.yml │ │ ├── bio_horrors.meta.yml │ │ ├── bio_horrors.yml │ │ ├── boardroom_manoeuvres.meta.yml │ │ ├── boardroom_manoeuvres.yml │ │ ├── cabbies.meta.yml │ │ ├── cabbies.yml │ │ ├── collection.yml │ │ ├── company_resources.meta.yml │ │ ├── company_resources.yml │ │ ├── condition.meta.yml │ │ ├── condition.yml │ │ ├── corporate_aristocrats.meta.yml │ │ ├── corporate_aristocrats.yml │ │ ├── corporations.yml │ │ ├── covert_go_between.meta.yml │ │ ├── covert_go_between.yml │ │ ├── department.meta.yml │ │ ├── department.yml │ │ ├── details.yml │ │ ├── downtown.meta.yml │ │ ├── downtown.yml │ │ ├── first_contact.meta.yml │ │ ├── first_contact.yml │ │ ├── first_responders.meta.yml │ │ ├── first_responders.yml │ │ ├── fixers.meta.yml │ │ ├── fixers.yml │ │ ├── freak_fighters.meta.yml │ │ ├── freak_fighters.yml │ │ ├── gangs.meta.yml │ │ ├── gangs.yml │ │ ├── gigs.meta.yml │ │ ├── gigs.yml │ │ ├── guns_for_hire.meta.yml │ │ ├── guns_for_hire.yml │ │ ├── hackable_assets.meta.yml │ │ ├── hackable_assets.yml │ │ ├── hackers.meta.yml │ │ ├── hackers.yml │ │ ├── infotainment.meta.yml │ │ ├── infotainment.yml │ │ ├── instacitizen.meta.yml │ │ ├── instacitizen.yml │ │ ├── job_sheet.meta.yml │ │ ├── job_sheet.yml │ │ ├── jobs.meta.yml │ │ ├── jobs.yml │ │ ├── legacy_data.meta.yml │ │ ├── legacy_data.yml │ │ ├── legacy_infrastructure.meta.yml │ │ ├── legacy_infrastructure.yml │ │ ├── local_conflict.meta.yml │ │ ├── local_conflict.yml │ │ ├── meta.yml │ │ ├── nightlife.meta.yml │ │ ├── nightlife.yml │ │ ├── npcs.yml │ │ ├── one_mans_trash.meta.yml │ │ ├── one_mans_trash.yml │ │ ├── ops.meta.yml │ │ ├── ops.yml │ │ ├── quirky_interiors.meta.yml │ │ ├── quirky_interiors.yml │ │ ├── response_level.meta.yml │ │ ├── response_level.yml │ │ ├── sense_and_the_city.yml │ │ ├── sights.meta.yml │ │ ├── sights.yml │ │ ├── smells.meta.yml │ │ ├── smells.yml │ │ ├── sounds.meta.yml │ │ ├── sounds.yml │ │ ├── street_uses.meta.yml │ │ ├── street_uses.yml │ │ ├── street_walkers.meta.yml │ │ ├── street_walkers.yml │ │ ├── tattoo.meta.yml │ │ ├── tattoo.yml │ │ ├── technical_details.yml │ │ ├── trespass.meta.yml │ │ ├── trespass.yml │ │ ├── vehicle_river.meta.yml │ │ ├── vehicle_river.yml │ │ ├── vehicle_road.meta.yml │ │ ├── vehicle_road.yml │ │ ├── vehicle_sky.meta.yml │ │ ├── vehicle_sky.yml │ │ ├── vehicles.yml │ │ ├── vendomat.meta.yml │ │ ├── vendomat.yml │ │ ├── vices.meta.yml │ │ ├── vices.yml │ │ ├── weather.meta.yml │ │ ├── weather.yml │ │ ├── whats_on_corpse.meta.yml │ │ ├── whats_on_corpse.yml │ │ ├── whats_on_thing.meta.yml │ │ ├── whats_on_thing.yml │ │ ├── where_has_it_been.meta.yml │ │ └── where_has_it_been.yml │ │ ├── behind_the_tables │ │ ├── apprentice_crafter.meta.yml │ │ ├── apprentice_crafter.yml │ │ ├── artisan.meta.yml │ │ ├── artisan.yml │ │ ├── assassin.meta.yml │ │ ├── assassin.yml │ │ ├── assassin_guild.meta.yml │ │ ├── assassin_guild.yml │ │ ├── barbarian.meta.yml │ │ ├── barbarian.yml │ │ ├── basic_dungeon.meta.yml │ │ ├── basic_dungeon.yml │ │ ├── c_archer.meta.yml │ │ ├── c_archer.yml │ │ ├── c_armorer.meta.yml │ │ ├── c_armorer.yml │ │ ├── c_bowyer.meta.yml │ │ ├── c_bowyer.yml │ │ ├── c_chaplain.meta.yml │ │ ├── c_chaplain.yml │ │ ├── c_cook.meta.yml │ │ ├── c_cook.yml │ │ ├── c_fool.meta.yml │ │ ├── c_fool.yml │ │ ├── c_guard.meta.yml │ │ ├── c_guard.yml │ │ ├── c_guard_captain.meta.yml │ │ ├── c_guard_captain.yml │ │ ├── c_horsemaster.meta.yml │ │ ├── c_horsemaster.yml │ │ ├── c_huntsman.meta.yml │ │ ├── c_huntsman.yml │ │ ├── c_jailer.meta.yml │ │ ├── c_jailer.yml │ │ ├── c_kennelmaster.meta.yml │ │ ├── c_kennelmaster.yml │ │ ├── c_knight.meta.yml │ │ ├── c_knight.yml │ │ ├── c_nobleman.meta.yml │ │ ├── c_nobleman.yml │ │ ├── c_noblewoman.meta.yml │ │ ├── c_noblewoman.yml │ │ ├── c_prisoner.meta.yml │ │ ├── c_prisoner.yml │ │ ├── c_retainer.meta.yml │ │ ├── c_retainer.yml │ │ ├── c_servant.meta.yml │ │ ├── c_servant.yml │ │ ├── c_stable_hand.meta.yml │ │ ├── c_stable_hand.yml │ │ ├── c_steward.meta.yml │ │ ├── c_steward.yml │ │ ├── c_torturer.meta.yml │ │ ├── c_torturer.yml │ │ ├── c_tutor.meta.yml │ │ ├── c_tutor.yml │ │ ├── castle.meta.yml │ │ ├── castle.yml │ │ ├── castle_dungeon.meta.yml │ │ ├── castle_dungeon.yml │ │ ├── castle_dungeon_room.meta.yml │ │ ├── castle_dungeon_room.yml │ │ ├── castle_encounters_dungeon.meta.yml │ │ ├── castle_encounters_dungeon.yml │ │ ├── castle_encounters_peace.meta.yml │ │ ├── castle_encounters_peace.yml │ │ ├── castle_encounters_siege.meta.yml │ │ ├── castle_encounters_siege.yml │ │ ├── castle_npcs.yml │ │ ├── castle_room.meta.yml │ │ ├── castle_room.yml │ │ ├── cavern_explore.meta.yml │ │ ├── cavern_explore.yml │ │ ├── caverns.meta.yml │ │ ├── caverns.yml │ │ ├── collection.yml │ │ ├── constable.meta.yml │ │ ├── constable.yml │ │ ├── crafting_guild.meta.yml │ │ ├── crafting_guild.yml │ │ ├── cult.meta.yml │ │ ├── cult.yml │ │ ├── cultist.meta.yml │ │ ├── cultist.yml │ │ ├── dark_elf.meta.yml │ │ ├── dark_elf.yml │ │ ├── dungeon_dressing.meta.yml │ │ ├── dungeon_dressing.yml │ │ ├── dwarf.meta.yml │ │ ├── dwarf.yml │ │ ├── encounters.yml │ │ ├── encounters_ancient_forest.meta.yml │ │ ├── encounters_ancient_forest.yml │ │ ├── encounters_dungeon.meta.yml │ │ ├── encounters_dungeon.yml │ │ ├── encounters_idyllic_village.meta.yml │ │ ├── encounters_idyllic_village.yml │ │ ├── encounters_rotting_city.meta.yml │ │ ├── encounters_rotting_city.yml │ │ ├── encounters_ship_sea.meta.yml │ │ ├── encounters_ship_sea.yml │ │ ├── gang_member.meta.yml │ │ ├── gang_member.yml │ │ ├── goblin.meta.yml │ │ ├── goblin.yml │ │ ├── goblin_gang.meta.yml │ │ ├── goblin_gang.yml │ │ ├── mage_towers.meta.yml │ │ ├── mage_towers.yml │ │ ├── mercenary_troop.meta.yml │ │ ├── mercenary_troop.yml │ │ ├── merchant.meta.yml │ │ ├── merchant.yml │ │ ├── merchant_guild.meta.yml │ │ ├── merchant_guild.yml │ │ ├── meta.yml │ │ ├── military_company.meta.yml │ │ ├── military_company.yml │ │ ├── mine.meta.yml │ │ ├── mine.yml │ │ ├── mine_explore.meta.yml │ │ ├── mine_explore.yml │ │ ├── miner.meta.yml │ │ ├── miner.yml │ │ ├── monastery.meta.yml │ │ ├── monastery.yml │ │ ├── monastery_encounter.meta.yml │ │ ├── monastery_encounter.yml │ │ ├── monastery_explore.meta.yml │ │ ├── monastery_explore.yml │ │ ├── monk.meta.yml │ │ ├── monk.yml │ │ ├── noble_house.meta.yml │ │ ├── noble_house.yml │ │ ├── npc.meta.yml │ │ ├── npc.yml │ │ ├── npc_appearance.meta.yml │ │ ├── npc_appearance.yml │ │ ├── npc_appearance_personality.yml │ │ ├── npc_personality.meta.yml │ │ ├── npc_personality.yml │ │ ├── orc.meta.yml │ │ ├── orc.yml │ │ ├── orkish_clan.meta.yml │ │ ├── orkish_clan.yml │ │ ├── outlaw_band.meta.yml │ │ ├── outlaw_band.yml │ │ ├── p_guard.meta.yml │ │ ├── p_guard.yml │ │ ├── p_jailer.meta.yml │ │ ├── p_jailer.yml │ │ ├── p_prisoner.meta.yml │ │ ├── p_prisoner.yml │ │ ├── pirate.meta.yml │ │ ├── pirate.yml │ │ ├── pirate_crew.meta.yml │ │ ├── pirate_crew.yml │ │ ├── poacher.meta.yml │ │ ├── poacher.yml │ │ ├── prison.meta.yml │ │ ├── prison.yml │ │ ├── prison_encounter.meta.yml │ │ ├── prison_encounter.yml │ │ ├── prison_explore.meta.yml │ │ ├── prison_explore.yml │ │ ├── pub_names.meta.yml │ │ ├── pub_names.yml │ │ ├── robber.meta.yml │ │ ├── robber.yml │ │ ├── savage_horde.meta.yml │ │ ├── savage_horde.yml │ │ ├── secret_society.meta.yml │ │ ├── secret_society.yml │ │ ├── sellsword.meta.yml │ │ ├── sellsword.yml │ │ ├── shopkeeper.meta.yml │ │ ├── shopkeeper.yml │ │ ├── smuggler.meta.yml │ │ ├── smuggler.yml │ │ ├── soldier.meta.yml │ │ ├── soldier.yml │ │ ├── t_alchemist.meta.yml │ │ ├── t_alchemist.yml │ │ ├── t_criminal.meta.yml │ │ ├── t_criminal.yml │ │ ├── t_law_official.meta.yml │ │ ├── t_law_official.yml │ │ ├── t_noble.meta.yml │ │ ├── t_noble.yml │ │ ├── t_priest.meta.yml │ │ ├── t_priest.yml │ │ ├── t_seer.meta.yml │ │ ├── t_seer.yml │ │ ├── t_server.meta.yml │ │ ├── t_server.yml │ │ ├── t_smith.meta.yml │ │ ├── t_smith.yml │ │ ├── t_traveler.meta.yml │ │ ├── t_traveler.yml │ │ ├── temple.meta.yml │ │ ├── temple.yml │ │ ├── temple_encounter.meta.yml │ │ ├── temple_encounter.yml │ │ ├── temple_explore.meta.yml │ │ ├── temple_explore.yml │ │ ├── temple_priest.meta.yml │ │ ├── temple_priest.yml │ │ ├── tomb.meta.yml │ │ ├── tomb.yml │ │ ├── tomb_explore.meta.yml │ │ ├── tomb_explore.yml │ │ ├── town_npcs.yml │ │ ├── trading_company.meta.yml │ │ ├── trading_company.yml │ │ ├── urban_gang.meta.yml │ │ ├── urban_gang.yml │ │ ├── watch_guard.meta.yml │ │ ├── watch_guard.yml │ │ ├── watchmen.meta.yml │ │ └── watchmen.yml │ │ ├── collections.yml │ │ ├── conjecture_games │ │ ├── collection.yml │ │ ├── connection.meta.yml │ │ ├── connection.yml │ │ ├── loom.meta.yml │ │ ├── loom.yml │ │ ├── meta.yml │ │ ├── npc_creator.meta.yml │ │ ├── npc_creator.yml │ │ ├── npc_interaction.meta.yml │ │ ├── npc_interaction.yml │ │ ├── waylay.meta.yml │ │ ├── waylay.yml │ │ ├── waylay_arced.meta.yml │ │ └── waylay_arced.yml │ │ ├── coriolis │ │ ├── collection.yml │ │ ├── conflict.meta.yml │ │ ├── conflict.yml │ │ ├── coriolis_encounters.meta.yml │ │ ├── coriolis_encounters.yml │ │ ├── critical_injury.meta.yml │ │ ├── critical_injury.yml │ │ ├── critical_ship_damage.meta.yml │ │ ├── critical_ship_damage.yml │ │ ├── encounters_planet.meta.yml │ │ ├── encounters_planet.yml │ │ ├── encounters_space.meta.yml │ │ ├── encounters_space.yml │ │ ├── expeditions.meta.yml │ │ ├── expeditions.yml │ │ ├── factionaries.meta.yml │ │ ├── factionaries.yml │ │ ├── failed_portal_jump.meta.yml │ │ ├── failed_portal_jump.yml │ │ ├── freelance.meta.yml │ │ ├── freelance.yml │ │ ├── leisure.meta.yml │ │ ├── leisure.yml │ │ ├── merchants.meta.yml │ │ ├── merchants.yml │ │ ├── meta.yml │ │ ├── misfortune_land.meta.yml │ │ ├── misfortune_land.yml │ │ ├── misfortune_travel.meta.yml │ │ ├── misfortune_travel.yml │ │ ├── mission_generator.meta.yml │ │ ├── mission_generator.yml │ │ ├── sysgen_asteroid_belt.meta.yml │ │ ├── sysgen_asteroid_belt.yml │ │ ├── sysgen_gas_giant.meta.yml │ │ ├── sysgen_gas_giant.yml │ │ ├── sysgen_moon.meta.yml │ │ ├── sysgen_moon.yml │ │ ├── sysgen_planet.meta.yml │ │ └── sysgen_planet.yml │ │ ├── dice_roller │ │ ├── collection.yml │ │ └── meta.yml │ │ ├── fourth_page │ │ ├── artifact.meta.yml │ │ ├── artifact.yml │ │ ├── city.meta.yml │ │ ├── city.yml │ │ ├── collection.yml │ │ ├── dungeon.meta.yml │ │ ├── dungeon.yml │ │ ├── meta.yml │ │ ├── monster.meta.yml │ │ └── monster.yml │ │ ├── freebooters_on_the_frontier │ │ ├── char_2.meta.fr.yml │ │ ├── char_2.meta.yml │ │ ├── char_2.yml │ │ ├── char_2_appearances.fr.yml │ │ ├── char_2_appearances.yml │ │ ├── char_2_gear.fr.yml │ │ ├── char_2_gear.yml │ │ ├── char_2_names.yml │ │ ├── char_2_tags.fr.yml │ │ ├── char_2_tags.yml │ │ ├── char_2_traits.fr.yml │ │ ├── char_2_traits.yml │ │ ├── char_names.yml │ │ ├── char_no_translate.yml │ │ ├── collection.yml │ │ ├── meta.yml │ │ ├── spells.fr.yml │ │ ├── spells.meta.fr.yml │ │ ├── spells.meta.yml │ │ ├── spells.yml │ │ └── wizard_names.yml │ │ ├── gma │ │ ├── belongings.meta.yml │ │ ├── belongings.yml │ │ ├── catalyst.meta.yml │ │ ├── catalyst.yml │ │ ├── collection.yml │ │ ├── difficulty.meta.yml │ │ ├── difficulty.yml │ │ ├── elements.meta.yml │ │ ├── elements.yml │ │ ├── likely_odds.meta.yml │ │ ├── likely_odds.yml │ │ ├── location.meta.yml │ │ ├── location.yml │ │ ├── meta.yml │ │ ├── names.meta.yml │ │ ├── names.yml │ │ ├── norse_runes.meta.yml │ │ ├── norse_runes.yml │ │ ├── random_event.meta.yml │ │ ├── random_event.yml │ │ ├── scatter.meta.yml │ │ ├── scatter.yml │ │ ├── sensory_snippet.meta.yml │ │ ├── sensory_snippet.yml │ │ ├── tags.meta.yml │ │ ├── tags.yml │ │ ├── virtue_vice.meta.yml │ │ └── virtue_vice.yml │ │ ├── hack_and_slash │ │ ├── collection.yml │ │ ├── contents_of_pit.meta.yml │ │ ├── contents_of_pit.yml │ │ ├── corridors.meta.yml │ │ ├── corridors.yml │ │ ├── curses.meta.yml │ │ ├── curses.yml │ │ ├── doors.meta.yml │ │ ├── doors.yml │ │ ├── empty_rooms.meta.yml │ │ ├── empty_rooms.yml │ │ ├── magic_pools.meta.yml │ │ ├── magic_pools.yml │ │ ├── meta.yml │ │ ├── things.meta.yml │ │ ├── things.yml │ │ ├── traps.meta.yml │ │ ├── traps.yml │ │ ├── tricks.meta.yml │ │ ├── tricks.yml │ │ ├── wfc.meta.yml │ │ └── wfc.yml │ │ ├── ironsworn │ │ ├── action_theme.meta.yml │ │ ├── action_theme.yml │ │ ├── ask_the_oracle.meta.yml │ │ ├── ask_the_oracle.yml │ │ ├── challenge_rank.meta.yml │ │ ├── challenge_rank.yml │ │ ├── coastal_waters.meta.yml │ │ ├── coastal_waters.yml │ │ ├── collection.yml │ │ ├── combataction.meta.yml │ │ ├── combataction.yml │ │ ├── harm.meta.yml │ │ ├── harm.yml │ │ ├── location.meta.yml │ │ ├── location.yml │ │ ├── meta.yml │ │ ├── mysticbacklash.meta.yml │ │ ├── mysticbacklash.yml │ │ ├── name.meta.yml │ │ ├── name.yml │ │ ├── npc.meta.yml │ │ ├── npc.yml │ │ ├── paytheprice.meta.yml │ │ ├── paytheprice.yml │ │ ├── plottwist.meta.yml │ │ ├── plottwist.yml │ │ ├── region.meta.yml │ │ ├── region.yml │ │ ├── settlement.meta.yml │ │ ├── settlement.yml │ │ ├── settlement_trouble.meta.yml │ │ ├── settlement_trouble.yml │ │ ├── stress.meta.yml │ │ └── stress.yml │ │ ├── kaigaku │ │ ├── animals.meta.yml │ │ ├── animals.yml │ │ ├── battlefield_enemies.meta.yml │ │ ├── battlefield_enemies.yml │ │ ├── battlefield_peril.meta.yml │ │ ├── battlefield_peril.yml │ │ ├── collection.yml │ │ ├── court_enemies.meta.yml │ │ ├── court_enemies.yml │ │ ├── meta.yml │ │ ├── urban_enemies.meta.yml │ │ └── urban_enemies.yml │ │ ├── knave │ │ ├── character.meta.yml │ │ ├── character.yml │ │ ├── collection.yml │ │ ├── gear.meta.yml │ │ ├── gear.yml │ │ ├── knave_base.yml │ │ ├── meta.yml │ │ ├── name.meta.yml │ │ ├── name.yml │ │ ├── reaction.meta.yml │ │ ├── reaction.yml │ │ ├── spell.meta.yml │ │ ├── spell.yml │ │ ├── traits.meta.yml │ │ └── traits.yml │ │ ├── macchiato_monsters │ │ ├── aa_equip.meta.yml │ │ ├── aa_equip.yml │ │ ├── cc_equip.meta.yml │ │ ├── cc_equip.yml │ │ ├── collection.yml │ │ ├── cvd_equip.meta.yml │ │ ├── cvd_equip.yml │ │ ├── fast_travel.meta.yml │ │ ├── fast_travel.yml │ │ ├── hireling.meta.yml │ │ ├── hireling.yml │ │ ├── just_joined.meta.yml │ │ ├── just_joined.yml │ │ ├── meta.yml │ │ ├── mm_equip.meta.yml │ │ ├── mm_equip.yml │ │ ├── moka_mechanoid_equip.meta.yml │ │ ├── moka_mechanoid_equip.yml │ │ ├── monsters.meta.yml │ │ ├── monsters.yml │ │ ├── morale.meta.yml │ │ ├── morale.yml │ │ ├── npc_motivation.meta.yml │ │ ├── npc_motivation.yml │ │ ├── reaction.meta.yml │ │ ├── reaction.yml │ │ ├── robusta_robots_equip.meta.yml │ │ ├── robusta_robots_equip.yml │ │ ├── rtt_equip.meta.yml │ │ ├── rtt_equip.yml │ │ ├── spell_mishap.meta.yml │ │ ├── spell_mishap.yml │ │ ├── trouble_at_camp.meta.yml │ │ ├── trouble_at_camp.yml │ │ ├── weather.meta.yml │ │ └── weather.yml │ │ ├── maze_rats │ │ ├── after_the_party.es.yml │ │ ├── after_the_party.meta.es.yml │ │ ├── after_the_party.meta.yml │ │ ├── after_the_party.yml │ │ ├── animals.meta.yml │ │ ├── animals.yml │ │ ├── books.es.yml │ │ ├── books.meta.es.yml │ │ ├── books.meta.yml │ │ ├── books.yml │ │ ├── buildings.es.yml │ │ ├── buildings.meta.es.yml │ │ ├── buildings.meta.yml │ │ ├── buildings.yml │ │ ├── characters.es.yml │ │ ├── characters.meta.es.yml │ │ ├── characters.meta.yml │ │ ├── characters.yml │ │ ├── city.es.yml │ │ ├── city.meta.es.yml │ │ ├── city.meta.yml │ │ ├── city.yml │ │ ├── collection.yml │ │ ├── district.es.yml │ │ ├── district.meta.es.yml │ │ ├── district.meta.yml │ │ ├── district.yml │ │ ├── divine_domains.es.yml │ │ ├── divine_domains.meta.es.yml │ │ ├── divine_domains.meta.yml │ │ ├── divine_domains.yml │ │ ├── dungeon.es.yml │ │ ├── dungeon.meta.yml │ │ ├── dungeon.yml │ │ ├── dungeon_room.es.yml │ │ ├── dungeon_room.meta.es.yml │ │ ├── dungeon_room.meta.yml │ │ ├── dungeon_room.yml │ │ ├── dungeon_trick.es.yml │ │ ├── dungeon_trick.meta.es.yml │ │ ├── dungeon_trick.meta.yml │ │ ├── dungeon_trick.yml │ │ ├── factions.es.yml │ │ ├── factions.meta.es.yml │ │ ├── factions.meta.yml │ │ ├── factions.yml │ │ ├── forage.es.yml │ │ ├── forage.meta.es.yml │ │ ├── forage.meta.yml │ │ ├── forage.yml │ │ ├── inns.es.yml │ │ ├── inns.meta.es.yml │ │ ├── inns.meta.yml │ │ ├── inns.yml │ │ ├── insanities.meta.es.yml │ │ ├── insanities.meta.yml │ │ ├── insanities.yml │ │ ├── items.meta.es.yml │ │ ├── items.meta.yml │ │ ├── items.yml │ │ ├── magical_ingredients.meta.es.yml │ │ ├── magical_ingredients.meta.yml │ │ ├── magical_ingredients.yml │ │ ├── maze_rats_base.yml │ │ ├── meta.es.yml │ │ ├── meta.yml │ │ ├── misfortunes.meta.es.yml │ │ ├── misfortunes.meta.yml │ │ ├── misfortunes.yml │ │ ├── missions.es.yml │ │ ├── missions.meta.es.yml │ │ ├── missions.meta.yml │ │ ├── missions.yml │ │ ├── monsters.es.yml │ │ ├── monsters.meta.es.yml │ │ ├── monsters.meta.yml │ │ ├── monsters.yml │ │ ├── mr01_afflictions.meta.yml │ │ ├── mr01_afflictions.yml │ │ ├── mr01_characters.meta.yml │ │ ├── mr01_characters.yml │ │ ├── mr01_items.meta.yml │ │ ├── mr01_items.yml │ │ ├── mr01_magic.meta.yml │ │ ├── mr01_magic.yml │ │ ├── mr01_monsters.meta.yml │ │ ├── mr01_monsters.yml │ │ ├── mr01_names.yml │ │ ├── mr01_potion_effects.meta.yml │ │ ├── mr01_potion_effects.yml │ │ ├── mr_characters.es.yml │ │ ├── mr_characters.yml │ │ ├── mr_city.es.yml │ │ ├── mr_city.yml │ │ ├── mr_magic.es.yml │ │ ├── mr_magic.yml │ │ ├── mr_maze.es.yml │ │ ├── mr_maze.yml │ │ ├── mr_monsters.es.yml │ │ ├── mr_monsters.yml │ │ ├── mr_treasure_equipment.es.yml │ │ ├── mr_treasure_equipment.yml │ │ ├── mr_wild.es.yml │ │ ├── mr_wild.yml │ │ ├── mutations.meta.es.yml │ │ ├── mutations.meta.yml │ │ ├── mutations.yml │ │ ├── names.es.yml │ │ ├── names.meta.es.yml │ │ ├── names.meta.yml │ │ ├── names.yml │ │ ├── npcs.es.yml │ │ ├── npcs.meta.es.yml │ │ ├── npcs.meta.yml │ │ ├── npcs.yml │ │ ├── omens_catastrophes.meta.es.yml │ │ ├── omens_catastrophes.meta.yml │ │ ├── omens_catastrophes.yml │ │ ├── pick_pocket.meta.es.yml │ │ ├── pick_pocket.meta.yml │ │ ├── pick_pocket.yml │ │ ├── potions.es.yml │ │ ├── potions.meta.es.yml │ │ ├── potions.meta.yml │ │ ├── potions.yml │ │ ├── spells.meta.es.yml │ │ ├── spells.meta.yml │ │ ├── spells.yml │ │ ├── traps.es.yml │ │ ├── traps.meta.es.yml │ │ ├── traps.meta.yml │ │ ├── traps.yml │ │ ├── treasure.es.yml │ │ ├── treasure.meta.es.yml │ │ ├── treasure.meta.yml │ │ ├── treasure.yml │ │ ├── wild_disc.es.yml │ │ ├── wild_disc.meta.es.yml │ │ ├── wild_disc.meta.yml │ │ ├── wild_disc.yml │ │ ├── wilderness.es.yml │ │ ├── wilderness.meta.es.yml │ │ ├── wilderness.meta.yml │ │ └── wilderness.yml │ │ ├── misc │ │ ├── backgrounds.meta.yml │ │ ├── backgrounds.yml │ │ ├── collection.yml │ │ ├── fate_chart_variant.meta.yml │ │ ├── fate_chart_variant.yml │ │ ├── magic_item.meta.yml │ │ ├── magic_item.yml │ │ ├── meta.yml │ │ ├── minor_arcana.meta.yml │ │ ├── minor_arcana.yml │ │ ├── names.meta.yml │ │ ├── names.yml │ │ ├── patron_deity.meta.yml │ │ ├── patron_deity.yml │ │ ├── potion_quaffing_contest.meta.yml │ │ ├── potion_quaffing_contest.yml │ │ ├── so1um.meta.yml │ │ ├── so1um.yml │ │ ├── tiny_universal.meta.yml │ │ └── tiny_universal.yml │ │ ├── mutant_year_zero │ │ ├── artifact.meta.yml │ │ ├── artifact.yml │ │ ├── checkpoint_response.meta.yml │ │ ├── checkpoint_response.yml │ │ ├── collection.yml │ │ ├── critical_injury.meta.yml │ │ ├── critical_injury.yml │ │ ├── event_ark.meta.yml │ │ ├── event_ark.yml │ │ ├── event_zone.meta.yml │ │ ├── event_zone.yml │ │ ├── feral_effect.meta.yml │ │ ├── feral_effect.yml │ │ ├── gla_random_encounter.meta.yml │ │ ├── gla_random_encounter.yml │ │ ├── meta.yml │ │ ├── mutation.meta.yml │ │ ├── mutation.yml │ │ ├── mutation_misfire.meta.yml │ │ ├── mutation_misfire.yml │ │ ├── npc_zone_exped.meta.yml │ │ ├── npc_zone_exped.yml │ │ ├── npcs.meta.yml │ │ ├── npcs.yml │ │ ├── scrap.meta.yml │ │ ├── scrap.yml │ │ ├── threat_ark.meta.yml │ │ ├── threat_ark.yml │ │ ├── threat_zone.meta.yml │ │ ├── threat_zone.yml │ │ ├── zone_sector.meta.yml │ │ ├── zone_sector.yml │ │ ├── zone_sector_mood.meta.yml │ │ └── zone_sector_mood.yml │ │ ├── perilous_wilds │ │ ├── collection.yml │ │ ├── creature.fr.yml │ │ ├── creature.meta.fr.yml │ │ ├── creature.meta.yml │ │ ├── creature.yml │ │ ├── creature_beast.meta.fr.yml │ │ ├── creature_beast.meta.yml │ │ ├── creature_beast.yml │ │ ├── creature_human.fr.yml │ │ ├── creature_human.meta.fr.yml │ │ ├── creature_human.meta.yml │ │ ├── creature_human.yml │ │ ├── creature_humanoid.fr.yml │ │ ├── creature_humanoid.meta.fr.yml │ │ ├── creature_humanoid.meta.yml │ │ ├── creature_humanoid.yml │ │ ├── creature_monster.meta.fr.yml │ │ ├── creature_monster.meta.yml │ │ ├── creature_monster.yml │ │ ├── danger.fr.yml │ │ ├── danger.meta.fr.yml │ │ ├── danger.meta.yml │ │ ├── danger.yml │ │ ├── details.fr.yml │ │ ├── details.meta.fr.yml │ │ ├── details.yml │ │ ├── discovery.fr.yml │ │ ├── discovery.meta.fr.yml │ │ ├── discovery.meta.yml │ │ ├── discovery.yml │ │ ├── dungeon.fr.yml │ │ ├── dungeon.meta.fr.yml │ │ ├── dungeon.meta.yml │ │ ├── dungeon.yml │ │ ├── explore_dungeon.fr.yml │ │ ├── explore_dungeon.meta.fr.yml │ │ ├── explore_dungeon.meta.yml │ │ ├── explore_dungeon.yml │ │ ├── follower.fr.yml │ │ ├── follower.meta.fr.yml │ │ ├── follower.meta.yml │ │ ├── follower.yml │ │ ├── meta.fr.yml │ │ ├── meta.yml │ │ ├── names.fr.yml │ │ ├── names.yml │ │ ├── names_arpad.fr.yml │ │ ├── names_arpad.meta.yml │ │ ├── names_arpad.yml │ │ ├── names_oloru.fr.yml │ │ ├── names_oloru.meta.yml │ │ ├── names_oloru.yml │ │ ├── names_tamanarugan.fr.yml │ │ ├── names_tamanarugan.meta.yml │ │ ├── names_tamanarugan.yml │ │ ├── names_valkoina.fr.yml │ │ ├── names_valkoina.meta.yml │ │ ├── names_valkoina.yml │ │ ├── npc.fr.yml │ │ ├── npc.meta.fr.yml │ │ ├── npc.meta.yml │ │ ├── npc.yml │ │ ├── npc_rural.meta.fr.yml │ │ ├── npc_rural.meta.yml │ │ ├── npc_rural.yml │ │ ├── npc_urban.meta.fr.yml │ │ ├── npc_urban.meta.yml │ │ ├── npc_urban.yml │ │ ├── npc_wilderness.meta.fr.yml │ │ ├── npc_wilderness.meta.yml │ │ ├── npc_wilderness.yml │ │ ├── place_names.fr.yml │ │ ├── place_names.meta.fr.yml │ │ ├── place_names.meta.yml │ │ ├── place_names.yml │ │ ├── region_names.fr.yml │ │ ├── region_names.meta.fr.yml │ │ ├── region_names.meta.yml │ │ ├── region_names.yml │ │ ├── steading.fr.yml │ │ ├── steading.meta.fr.yml │ │ ├── steading.meta.yml │ │ ├── steading.yml │ │ ├── treasure.fr.yml │ │ ├── treasure.yml │ │ ├── treasure_guarded.fr.yml │ │ ├── treasure_guarded.meta.fr.yml │ │ ├── treasure_guarded.meta.yml │ │ ├── treasure_guarded.yml │ │ ├── treasure_item.meta.fr.yml │ │ ├── treasure_item.meta.yml │ │ ├── treasure_item.yml │ │ ├── treasure_unguarded.fr.yml │ │ ├── treasure_unguarded.meta.fr.yml │ │ ├── treasure_unguarded.meta.yml │ │ └── treasure_unguarded.yml │ │ ├── portal_rats │ │ ├── background.meta.yml │ │ ├── background.yml │ │ ├── class_occupation.meta.yml │ │ ├── class_occupation.yml │ │ ├── collection.yml │ │ ├── item.meta.yml │ │ ├── item.yml │ │ ├── meta.yml │ │ ├── monster_features.meta.yml │ │ ├── monster_features.yml │ │ ├── npc.meta.yml │ │ ├── npc.yml │ │ ├── npc_reaction.meta.yml │ │ ├── npc_reaction.yml │ │ ├── out_of_action.meta.yml │ │ ├── out_of_action.yml │ │ ├── portal_destination.meta.yml │ │ └── portal_destination.yml │ │ ├── roll_xx │ │ ├── collection.yml │ │ ├── fant_assassins.meta.yml │ │ ├── fant_assassins.yml │ │ ├── fant_automaton.meta.yml │ │ ├── fant_automaton.yml │ │ ├── fant_banquet.meta.yml │ │ ├── fant_banquet.yml │ │ ├── fant_barbarian.meta.yml │ │ ├── fant_barbarian.yml │ │ ├── fant_believe.meta.yml │ │ ├── fant_believe.yml │ │ ├── fant_bird_beak.meta.yml │ │ ├── fant_bird_beak.yml │ │ ├── fant_blob.meta.yml │ │ ├── fant_blob.yml │ │ ├── fant_cleric.meta.yml │ │ ├── fant_cleric.yml │ │ ├── fant_dark_secret.meta.yml │ │ ├── fant_dark_secret.yml │ │ ├── fant_demon_from.meta.yml │ │ ├── fant_demon_from.yml │ │ ├── fant_demon_kind.meta.yml │ │ ├── fant_demon_kind.yml │ │ ├── fant_dragon.meta.yml │ │ ├── fant_dragon.yml │ │ ├── fant_dungeon.meta.yml │ │ ├── fant_dungeon.yml │ │ ├── fant_elves.meta.yml │ │ ├── fant_elves.yml │ │ ├── fant_enchanted_jewelry.meta.yml │ │ ├── fant_enchanted_jewelry.yml │ │ ├── fant_frost_dragon.meta.yml │ │ ├── fant_frost_dragon.yml │ │ ├── fant_guard.meta.yml │ │ ├── fant_guard.yml │ │ ├── fant_hirer.meta.yml │ │ ├── fant_hirer.yml │ │ ├── fant_hybrid.meta.yml │ │ ├── fant_hybrid.yml │ │ ├── fant_locked_door.meta.yml │ │ ├── fant_locked_door.yml │ │ ├── fant_mage_truth.meta.yml │ │ ├── fant_mage_truth.yml │ │ ├── fant_medical_procedure.meta.yml │ │ ├── fant_medical_procedure.yml │ │ ├── fant_miscast_spell.meta.yml │ │ ├── fant_miscast_spell.yml │ │ ├── fant_monster_gen.meta.yml │ │ ├── fant_monster_gen.yml │ │ ├── fant_necromancer.meta.yml │ │ ├── fant_necromancer.yml │ │ ├── fant_new_threat.meta.yml │ │ ├── fant_new_threat.yml │ │ ├── fant_oath.meta.yml │ │ ├── fant_oath.yml │ │ ├── fant_obelisk.meta.yml │ │ ├── fant_obelisk.yml │ │ ├── fant_orc_chieftan.meta.yml │ │ ├── fant_orc_chieftan.yml │ │ ├── fant_potion.meta.yml │ │ ├── fant_potion.yml │ │ ├── fant_queen.meta.yml │ │ ├── fant_queen.yml │ │ ├── fant_rider.meta.yml │ │ ├── fant_rider.yml │ │ ├── fant_search_corpse.meta.yml │ │ ├── fant_search_corpse.yml │ │ ├── fant_searching.meta.yml │ │ ├── fant_searching.yml │ │ ├── fant_sepulchre.meta.yml │ │ ├── fant_sepulchre.yml │ │ ├── fant_shopkeeper.meta.yml │ │ ├── fant_shopkeeper.yml │ │ ├── fant_sky.meta.yml │ │ ├── fant_sky.yml │ │ ├── fant_sorcerors.meta.yml │ │ ├── fant_sorcerors.yml │ │ ├── fant_sprung_trap.meta.yml │ │ ├── fant_sprung_trap.yml │ │ ├── fant_stole_blade.meta.yml │ │ ├── fant_stole_blade.yml │ │ ├── fant_summoned.meta.yml │ │ ├── fant_summoned.yml │ │ ├── fant_time_period.meta.yml │ │ ├── fant_time_period.yml │ │ ├── fant_treasure_chest.meta.yml │ │ ├── fant_treasure_chest.yml │ │ ├── fant_treasure_seeker.meta.yml │ │ ├── fant_treasure_seeker.yml │ │ ├── fant_wall_runes.meta.yml │ │ ├── fant_wall_runes.yml │ │ ├── fant_wand.meta.yml │ │ ├── fant_wand.yml │ │ ├── fant_warrior_armor.meta.yml │ │ ├── fant_warrior_armor.yml │ │ ├── fant_where_going.meta.yml │ │ ├── fant_where_going.yml │ │ ├── horror_bites.meta.yml │ │ ├── horror_bites.yml │ │ ├── horror_bodies_hidden.meta.yml │ │ ├── horror_bodies_hidden.yml │ │ ├── horror_body_part.meta.yml │ │ ├── horror_body_part.yml │ │ ├── horror_ceiling.meta.yml │ │ ├── horror_ceiling.yml │ │ ├── horror_clue.meta.yml │ │ ├── horror_clue.yml │ │ ├── horror_crime_scene.meta.yml │ │ ├── horror_crime_scene.yml │ │ ├── horror_crypt.meta.yml │ │ ├── horror_crypt.yml │ │ ├── horror_cure.meta.yml │ │ ├── horror_cure.yml │ │ ├── horror_escape.meta.yml │ │ ├── horror_escape.yml │ │ ├── horror_familiar.meta.yml │ │ ├── horror_familiar.yml │ │ ├── horror_hole.meta.yml │ │ ├── horror_hole.yml │ │ ├── horror_love.meta.yml │ │ ├── horror_love.yml │ │ ├── horror_make_it_stop.meta.yml │ │ ├── horror_make_it_stop.yml │ │ ├── horror_memories.meta.yml │ │ ├── horror_memories.yml │ │ ├── horror_monster_type.meta.yml │ │ ├── horror_monster_type.yml │ │ ├── horror_noise.meta.yml │ │ ├── horror_noise.yml │ │ ├── horror_scars.meta.yml │ │ ├── horror_scars.yml │ │ ├── horror_shadow.meta.yml │ │ ├── horror_shadow.yml │ │ ├── horror_signature.meta.yml │ │ ├── horror_signature.yml │ │ ├── horror_soul.meta.yml │ │ ├── horror_soul.yml │ │ ├── horror_sound.meta.yml │ │ ├── horror_sound.yml │ │ ├── horror_they.meta.yml │ │ ├── horror_they.yml │ │ ├── horror_under_bed.meta.yml │ │ ├── horror_under_bed.yml │ │ ├── horror_under_skin.meta.yml │ │ ├── horror_under_skin.yml │ │ ├── horror_unseen_entity.meta.yml │ │ ├── horror_unseen_entity.yml │ │ ├── horror_vices.meta.yml │ │ ├── horror_vices.yml │ │ ├── horror_zombie_story.meta.yml │ │ ├── horror_zombie_story.yml │ │ ├── meta.yml │ │ ├── modern_callsign.meta.yml │ │ ├── modern_callsign.yml │ │ ├── modern_duffel.meta.yml │ │ ├── modern_duffel.yml │ │ ├── modern_expertise.meta.yml │ │ ├── modern_expertise.yml │ │ ├── modern_fingerprints.meta.yml │ │ ├── modern_fingerprints.yml │ │ ├── modern_insects.meta.yml │ │ ├── modern_insects.yml │ │ ├── modern_liquid.meta.yml │ │ ├── modern_liquid.yml │ │ ├── modern_magic.meta.yml │ │ ├── modern_magic.yml │ │ ├── modern_pool.meta.yml │ │ ├── modern_pool.yml │ │ ├── modern_primary_objective.meta.yml │ │ ├── modern_primary_objective.yml │ │ ├── modern_secret.meta.yml │ │ ├── modern_secret.yml │ │ ├── modern_secret_society.meta.yml │ │ ├── modern_secret_society.yml │ │ ├── modern_sentry.meta.yml │ │ ├── modern_sentry.yml │ │ ├── modern_smell.meta.yml │ │ ├── modern_smell.yml │ │ ├── modern_suitcase.meta.yml │ │ ├── modern_suitcase.yml │ │ ├── modern_tonight.meta.yml │ │ ├── modern_tonight.yml │ │ ├── modern_vehicle.meta.yml │ │ ├── modern_vehicle.yml │ │ ├── scifi_ancient_terminal.meta.yml │ │ ├── scifi_ancient_terminal.yml │ │ ├── scifi_anomaly.meta.yml │ │ ├── scifi_anomaly.yml │ │ ├── scifi_bounty_hunter.meta.yml │ │ ├── scifi_bounty_hunter.yml │ │ ├── scifi_escape.meta.yml │ │ ├── scifi_escape.yml │ │ ├── scifi_land.meta.yml │ │ ├── scifi_land.yml │ │ ├── scifi_malfunction.meta.yml │ │ ├── scifi_malfunction.yml │ │ ├── scifi_passengers.meta.yml │ │ ├── scifi_passengers.yml │ │ ├── scifi_rubble.meta.yml │ │ ├── scifi_rubble.yml │ │ ├── scifi_starship_type.meta.yml │ │ ├── scifi_starship_type.yml │ │ ├── scifi_went_dark.meta.yml │ │ ├── scifi_went_dark.yml │ │ ├── scifi_xenomorph.meta.yml │ │ ├── scifi_xenomorph.yml │ │ ├── supers_aliens.meta.yml │ │ ├── supers_aliens.yml │ │ ├── supers_connections.meta.yml │ │ ├── supers_connections.yml │ │ ├── supers_origin.meta.yml │ │ ├── supers_origin.yml │ │ ├── supers_protecting.meta.yml │ │ ├── supers_protecting.yml │ │ ├── supers_useless_power.meta.yml │ │ ├── supers_useless_power.yml │ │ ├── supers_villain_lair.meta.yml │ │ ├── supers_villain_lair.yml │ │ ├── supers_villain_rant.meta.yml │ │ ├── supers_villain_rant.yml │ │ ├── supers_villain_target.meta.yml │ │ ├── supers_villain_target.yml │ │ ├── supers_villain_threat.meta.yml │ │ ├── supers_villain_threat.yml │ │ ├── supers_weakness.meta.yml │ │ ├── supers_weakness.yml │ │ ├── supers_who_the_heck.meta.yml │ │ └── supers_who_the_heck.yml │ │ ├── ss_and_ss │ │ ├── adventure_complication.meta.yml │ │ ├── adventure_complication.yml │ │ ├── adventure_idea.meta.yml │ │ ├── adventure_idea.yml │ │ ├── adventure_title.meta.yml │ │ ├── adventure_title.yml │ │ ├── antagonist.meta.yml │ │ ├── antagonist.yml │ │ ├── arcane_corruption.meta.yml │ │ ├── arcane_corruption.yml │ │ ├── collection.yml │ │ ├── complication.meta.yml │ │ ├── complication.yml │ │ ├── forgotten_artifacts.meta.yml │ │ ├── forgotten_artifacts.yml │ │ ├── life_events.meta.yml │ │ ├── life_events.yml │ │ ├── meta.yml │ │ ├── monster.meta.yml │ │ ├── monster.yml │ │ ├── opponent_reaction.meta.yml │ │ ├── opponent_reaction.yml │ │ ├── reward.meta.yml │ │ ├── reward.yml │ │ ├── spell_catastrophe.meta.yml │ │ ├── spell_catastrophe.yml │ │ ├── spellbook_effects.meta.yml │ │ ├── spellbook_effects.yml │ │ ├── supporting_character.meta.yml │ │ ├── supporting_character.yml │ │ ├── travel_hazards.meta.yml │ │ ├── travel_hazards.yml │ │ ├── treasure.meta.yml │ │ ├── treasure.yml │ │ ├── what_has_changed.meta.yml │ │ ├── what_has_changed.yml │ │ ├── where_gold_go.meta.yml │ │ └── where_gold_go.yml │ │ ├── stars_without_number │ │ ├── abandoned_structure.meta.yml │ │ ├── abandoned_structure.yml │ │ ├── adventure_seed.meta.yml │ │ ├── adventure_seed.yml │ │ ├── alien.meta.yml │ │ ├── alien.yml │ │ ├── animal.meta.yml │ │ ├── animal.yml │ │ ├── architecture.meta.yml │ │ ├── architecture.yml │ │ ├── backwater_spaceport.meta.yml │ │ ├── backwater_spaceport.yml │ │ ├── charclass_expert.meta.yml │ │ ├── charclass_expert.yml │ │ ├── charclass_psychic.meta.yml │ │ ├── charclass_psychic.yml │ │ ├── charclass_warrior.meta.yml │ │ ├── charclass_warrior.yml │ │ ├── collection.yml │ │ ├── corporation.meta.yml │ │ ├── corporation.yml │ │ ├── faction_2.meta.yml │ │ ├── faction_2.yml │ │ ├── family_background.meta.yml │ │ ├── family_background.yml │ │ ├── heresy.meta.yml │ │ ├── heresy.yml │ │ ├── life_event.meta.yml │ │ ├── life_event.yml │ │ ├── mandate_tech.yml │ │ ├── mandate_tech_hand_held.meta.yml │ │ ├── mandate_tech_hand_held.yml │ │ ├── mandate_tech_worn.meta.yml │ │ ├── mandate_tech_worn.yml │ │ ├── meta.yml │ │ ├── names.yml │ │ ├── names_arabic.meta.yml │ │ ├── names_arabic.yml │ │ ├── names_chinese.meta.yml │ │ ├── names_chinese.yml │ │ ├── names_english.meta.yml │ │ ├── names_english.yml │ │ ├── names_headers.yml │ │ ├── names_indian.meta.yml │ │ ├── names_indian.yml │ │ ├── names_japanese.meta.yml │ │ ├── names_japanese.yml │ │ ├── names_nigerian.meta.yml │ │ ├── names_nigerian.yml │ │ ├── names_russian.meta.yml │ │ ├── names_russian.yml │ │ ├── names_spanish.meta.yml │ │ ├── names_spanish.yml │ │ ├── npc.meta.yml │ │ ├── npc.yml │ │ ├── political_party.meta.yml │ │ ├── political_party.yml │ │ ├── religion.meta.yml │ │ ├── religion.yml │ │ ├── religious_revolt.meta.yml │ │ ├── religious_revolt.yml │ │ ├── room_dressing.meta.yml │ │ ├── room_dressing.yml │ │ ├── scavenger_fleet.meta.yml │ │ ├── scavenger_fleet.yml │ │ ├── temple_shrine.meta.yml │ │ ├── temple_shrine.yml │ │ ├── world_2.meta.yml │ │ ├── world_2.yml │ │ ├── world_2_tags.yml │ │ ├── world_tag.meta.yml │ │ └── world_tag.yml │ │ └── the_queens_cavaliers │ │ ├── collection.yml │ │ ├── dat_bg.yml │ │ ├── dat_calendar.yml │ │ ├── dat_class.yml │ │ ├── dat_culture.yml │ │ ├── dat_gear.yml │ │ ├── dat_npc.yml │ │ ├── dat_stats.yml │ │ ├── gen_backstory.meta.yml │ │ ├── gen_backstory.yml │ │ ├── gen_birthday.meta.yml │ │ ├── gen_birthday.yml │ │ ├── gen_cal_func.meta.yml │ │ ├── gen_cal_func.yml │ │ ├── gen_classes.meta.yml │ │ ├── gen_classes.yml │ │ ├── gen_country.meta.yml │ │ ├── gen_country.yml │ │ ├── gen_customdice_1.meta.yml │ │ ├── gen_customdice_1.yml │ │ ├── gen_customdice_2.meta.yml │ │ ├── gen_customdice_2.yml │ │ ├── gen_customdice_3.meta.yml │ │ ├── gen_customdice_3.yml │ │ ├── gen_customdice_4.meta.yml │ │ ├── gen_customdice_4.yml │ │ ├── gen_customdice_5.meta.yml │ │ ├── gen_customdice_5.yml │ │ ├── gen_customdice_6.meta.yml │ │ ├── gen_customdice_6.yml │ │ ├── gen_customdice_7.meta.yml │ │ ├── gen_customdice_7.yml │ │ ├── gen_date.meta.yml │ │ ├── gen_date.yml │ │ ├── gen_language.meta.yml │ │ ├── gen_language.yml │ │ ├── gen_name.meta.yml │ │ ├── gen_name.yml │ │ ├── gen_passions.meta.yml │ │ ├── gen_passions.yml │ │ ├── gen_tqcdice.meta.yml │ │ ├── gen_tqcdice.yml │ │ ├── lib_bg.yml │ │ ├── lib_calendar.yml │ │ ├── lib_class.yml │ │ ├── lib_culture.yml │ │ ├── lib_dice_roller.yml │ │ ├── lib_help.yml │ │ ├── lib_stats.yml │ │ ├── meta.yml │ │ ├── str_bg.yml │ │ ├── str_calendar.yml │ │ ├── str_class.yml │ │ ├── str_culture.yml │ │ ├── str_gear.yml │ │ ├── str_help.yml │ │ ├── str_stats.yml │ │ ├── str_style.yml │ │ └── str_tqc.yml │ └── test │ ├── java │ └── org │ │ └── stevesea │ │ └── adventuresmith │ │ └── core │ │ ├── DiceParserTest.kt │ │ ├── Exerciser.kt │ │ ├── GeneratorTest.kt │ │ ├── RangeMapTest.kt │ │ ├── TestHelpers.kt │ │ ├── maze_rats │ │ └── MazeRatsTest.kt │ │ ├── perilous_wilds │ │ └── PwTest.kt │ │ ├── ss_and_ss │ │ └── SsAndSsTest.kt │ │ └── stars_without_number │ │ └── SwnTest.kt │ └── resources │ ├── logback.xml │ └── org │ └── stevesea │ └── adventuresmith │ └── core │ ├── test_resource.meta.yml │ ├── test_resource.yml │ ├── test_sibling.yml │ └── test_sibling2.yml ├── advsmith_signing.gradle.enc ├── android.jks.enc ├── app ├── .gitignore ├── build.gradle ├── debug.keystore ├── proguard-rules.pro └── src │ ├── debug │ └── res │ │ └── values │ │ └── strings.xml │ ├── main │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── org │ │ │ └── stevesea │ │ │ └── adventuresmith │ │ │ ├── AboutActivity.kt │ │ │ ├── AdventuresmithActivity.kt │ │ │ ├── AdventuresmithApp.kt │ │ │ ├── AttributionActivity.kt │ │ │ ├── GeneratorButton.kt │ │ │ ├── ResultItem.kt │ │ │ └── SplashActivity.kt │ └── res │ │ ├── drawable-xxhdpi │ │ ├── advsmth_splasha.png │ │ ├── advsmth_splashb.png │ │ ├── alexander_great_bats_rats_1.jpg │ │ ├── alexander_great_bats_rats_2.jpg │ │ ├── animal_geometry.jpg │ │ ├── bear_army.jpg │ │ ├── cockatrice_crocodile.jpg │ │ ├── death_king_arthur.jpg │ │ ├── death_lion.jpg │ │ ├── demon_glasses.jpg │ │ ├── elephant_rat.jpg │ │ ├── fallen_angels.jpg │ │ ├── fallen_angels_2.jpg │ │ ├── goat_musician.jpg │ │ ├── green_demon_1.jpg │ │ ├── griffin_hog_hug.jpg │ │ ├── header_graphic.png │ │ ├── header_graphic_b.png │ │ ├── initial_d.jpg │ │ ├── organ_bunny.jpg │ │ ├── perseus_and_andromeda.jpg │ │ ├── rabbit_knight.jpg │ │ ├── sagittarius.jpg │ │ ├── siege_rabbits.jpg │ │ └── snail_and_turtle.jpg │ │ ├── drawable │ │ ├── ic_advsmth_splasha.xml │ │ ├── ic_delete_24dp.xml │ │ ├── ic_email_24dp.xml │ │ ├── ic_settings_black_24dp.xml │ │ ├── ic_share_24dp.xml │ │ └── splash.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_adventuresmith.xml │ │ ├── activity_attribution.xml │ │ ├── button_grid_item.xml │ │ └── result_list_item.xml │ │ ├── menu │ │ ├── main.xml │ │ └── result_select_menu.xml │ │ ├── mipmap-mdpi │ │ └── adventuresmith_icon.png │ │ ├── mipmap-xhdpi │ │ └── adventuresmith_icon.png │ │ ├── mipmap-xxxhdpi │ │ └── adventuresmith_icon.png │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w1000dp │ │ └── dimens.xml │ │ ├── values-w500dp │ │ └── dimens.xml │ │ ├── values-w800dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── drawables.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ ├── strings_thanks.xml │ │ └── styles.xml │ └── release │ └── res │ └── values │ └── strings.xml ├── circle.yml ├── content_attribution.md ├── docs └── images │ ├── asthmatic_half_orc_bandit.png │ ├── nav_drawer1.png │ ├── nav_drawer2.png │ └── npc_sample.png ├── gradle.properties ├── gradle ├── detekt.yml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── privacy_policy.md ├── projectFilesBackup └── .idea │ └── workspace.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.sops.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/License.txt -------------------------------------------------------------------------------- /OGL1.0a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/OGL1.0a.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/README.md -------------------------------------------------------------------------------- /adventuresmith-cli/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /bin -------------------------------------------------------------------------------- /adventuresmith-cli/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-cli/build.gradle -------------------------------------------------------------------------------- /adventuresmith-cli/src/dist/examples/items.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Item 3 | -------------------------------------------------------------------------------- /adventuresmith-cli/src/dist/examples/items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-cli/src/dist/examples/items.yml -------------------------------------------------------------------------------- /adventuresmith-cli/src/dist/examples/magic.meta.yml: -------------------------------------------------------------------------------- 1 | name: Spell 2 | -------------------------------------------------------------------------------- /adventuresmith-cli/src/dist/examples/magic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-cli/src/dist/examples/magic.yml -------------------------------------------------------------------------------- /adventuresmith-cli/src/dist/examples/spells.fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-cli/src/dist/examples/spells.fr.yml -------------------------------------------------------------------------------- /adventuresmith-cli/src/dist/examples/spells.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Charme 3 | -------------------------------------------------------------------------------- /adventuresmith-cli/src/dist/examples/spells.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Spell 3 | -------------------------------------------------------------------------------- /adventuresmith-cli/src/dist/examples/spells.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-cli/src/dist/examples/spells.yml -------------------------------------------------------------------------------- /adventuresmith-cli/src/dist/examples/wizard_names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-cli/src/dist/examples/wizard_names.yml -------------------------------------------------------------------------------- /adventuresmith-cli/src/main/kotlin/org/stevesea/adventuresmith/cli/AdventuresmithCli.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-cli/src/main/kotlin/org/stevesea/adventuresmith/cli/AdventuresmithCli.kt -------------------------------------------------------------------------------- /adventuresmith-cli/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-cli/src/main/resources/logback.xml -------------------------------------------------------------------------------- /adventuresmith-core/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /bin -------------------------------------------------------------------------------- /adventuresmith-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/build.gradle -------------------------------------------------------------------------------- /adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/AdventureSmithModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/AdventureSmithModule.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/Generator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/Generator.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/RangeMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/RangeMap.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/RangeMapDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/RangeMapDeserializer.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/Shuffler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/Shuffler.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/Utils.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/dice_roller/Dice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/dice_roller/Dice.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/dice_roller/DiceParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/kotlin/org/stevesea/adventuresmith/core/dice_roller/DiceParser.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/alternative_business.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Alternative Business 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/area_events.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Area Event -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/augmented_reality.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Augmented Reality -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/backup.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Call for Back Up -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/boardroom_manoeuvres.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Boardroom Manoeuvres -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/cabbies.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Cabbie -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/company_resources.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Company Resources 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/condition.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Condition of Found (or Stolen) Technology -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/corporate_aristocrats.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Corporate Aristocrat -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/covert_go_between.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Covert Go Between -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/department.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: The Department 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/downtown.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Downtown -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/first_contact.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mysterious First Contact -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/first_responders.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: First Responders 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/fixers.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Fixers & Facemen -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/freak_fighters.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Freak Fighters -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/gangs.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Street Gang 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/gigs.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Gig Economy -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/guns_for_hire.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Guns for Hire -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/hackable_assets.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Hackable Assets 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/hackers.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Hackers & Slicers 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/infotainment.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Infotainment 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/instacitizen.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Instacitizen -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/job_sheet.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Job Sheet -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/jobs.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mr. Johnson Job Generator 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/legacy_data.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Legacy Data 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/legacy_infrastructure.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Legacy Infrastructure -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/local_conflict.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Local Conflict 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/nightlife.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Nightlife 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/one_mans_trash.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: One Man's Trash… -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/ops.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What did we just stumble into? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/ops.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/ops.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/quirky_interiors.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Quirky Interior -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/response_level.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Response Level 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/sights.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Sights 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/smells.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Smells 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/sounds.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Sounds 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/street_uses.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Repurposed for Street Use -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/street_walkers.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Street Walker 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/tattoo.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Tattoo 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/trespass.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who's already been in that building? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/vehicle_river.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's on the River? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/vehicle_road.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's on the Road? 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/vehicle_sky.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's in the Sky? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/vendomat.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Vendomat Goods -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/vices.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Vices -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/weather.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Today's Forecast… 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/whats_on_corpse.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's on the Corpse? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/augmented_reality/where_has_it_been.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where has it been? 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/apprentice_crafter.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Apprentice Crafter -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/artisan.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Artisan -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/assassin.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Assassin 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/assassin_guild.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Assassin Guild 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/barbarian.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Barbarian -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/basic_dungeon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Basic Dungeon 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_archer.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Archer 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_armorer.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Armorer / Smith -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_bowyer.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bowyer / Fletcher 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_chaplain.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Chaplain -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_cook.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Cook -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_fool.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Fool / Jester 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_guard.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Guard -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_guard_captain.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Guard Captain 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_horsemaster.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Horse Master -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_huntsman.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Huntsman -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_jailer.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Jailer -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_kennelmaster.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Kennel Master -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_knight.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Knight -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_nobleman.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Lord -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_noblewoman.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Lady -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_prisoner.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Prisoner -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_retainer.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Squire / Valet -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_servant.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Servant -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_stable_hand.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Stable Hand -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_steward.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Steward -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_torturer.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Torturer 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/c_tutor.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Tutor / Sage 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/castle.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Castle -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/castle_dungeon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Castle Dungeon 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/castle_dungeon_room.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Castle Dungeon Room 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/castle_encounters_dungeon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dungeon Escape -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/castle_encounters_peace.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Castle In Peace 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/castle_encounters_siege.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Castle Under Siege 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/castle_room.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Room -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/cavern_explore.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Explore Cavern -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/caverns.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Cavern 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/constable.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Constable 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/crafting_guild.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Crafting Guild 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/cult.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Cult 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/cultist.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Cultist 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/dark_elf.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dark Elf 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/dungeon_dressing.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dungeon Dressing -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/dwarf.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dwarf -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/encounters_ancient_forest.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Ancient Forest Vignette -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/encounters_dungeon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dungeon Vignette -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/encounters_idyllic_village.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Idyllic Village Vignette -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/encounters_rotting_city.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Rotting City Vignette -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/encounters_ship_sea.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Aboard Ship at Sea Vignette -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/gang_member.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Gang Member 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/goblin.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Goblin -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/goblin_gang.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Goblin Gang -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/mage_towers.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mage Tower -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/mercenary_troop.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mercenary Troop -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/merchant.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Merchant -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/merchant_guild.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Merchant Guild 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/military_company.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Military Company 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/mine.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mine -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/mine_explore.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Explore Mine -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/miner.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Miner -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/monastery.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monastery -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/monastery_encounter.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monastery Encounter -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/monastery_explore.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Explore Monastery -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/monk.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monk 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/noble_house.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Noble House 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/npc.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: NPC 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/npc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/npc.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/npc_appearance.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Appearance -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/npc_personality.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Personality 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/orc.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Orc 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/orc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/orc.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/orkish_clan.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Orkish Clan -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/outlaw_band.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Outlaw Band 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/p_guard.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Prison Guard -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/p_jailer.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Jailer 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/p_prisoner.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Prisoner 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/pirate.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Pirate 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/pirate_crew.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Pirate Crew -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/poacher.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Poacher 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/prison.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Prison -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/prison_encounter.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Prison Escape -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/prison_explore.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Explore Prison 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/pub_names.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Pub Names -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/robber.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Robber 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/savage_horde.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Savage Horde 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/secret_society.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Secret Society 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/sellsword.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Sellsword -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/shopkeeper.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Shopkeeper 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/smuggler.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Smuggler -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/soldier.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Soldier -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/t_alchemist.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Alchemist 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/t_criminal.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Criminal -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/t_law_official.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Law Official 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/t_noble.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Noble 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/t_priest.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Priest -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/t_seer.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Seer -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/t_smith.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Smith -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/t_traveler.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Traveler -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/temple.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Temple 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/temple_encounter.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Temple Encounter 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/temple_explore.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Explore Temple 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/temple_priest.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Temple Priest 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/tomb.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Tomb 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/tomb_explore.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Explore Tomb 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/trading_company.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Trading Company 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/urban_gang.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Urban Gang 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/watch_guard.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Watch Guard 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/behind_the_tables/watchmen.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Watchmen 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/collections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/collections.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/conjecture_games/connection.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Connection -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/conjecture_games/loom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/conjecture_games/loom.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/conjecture_games/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/conjecture_games/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/collection.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/conflict.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Conflicts -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/conflict.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/conflict.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/critical_injury.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Critical Injury -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/critical_ship_damage.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Critical Ship Damage -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/expeditions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/expeditions.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/factionaries.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Factionaries -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/factionaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/factionaries.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/freelance.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Freelance Agencies -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/freelance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/freelance.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/leisure.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Leisure Travel / Pilgrimage -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/leisure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/leisure.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/merchants.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Merchants & Trading Companies -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/merchants.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/merchants.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/misfortune_land.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Misfortune on Land -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/misfortune_travel.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Travel Misfortune -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/sysgen_asteroid_belt.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Asteroid Belt -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/sysgen_gas_giant.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Gas Giant -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/sysgen_moon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Moon or Small Planet -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/sysgen_moon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/sysgen_moon.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/coriolis/sysgen_planet.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Planet -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/dice_roller/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/dice_roller/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/artifact.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Artifact 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/artifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/artifact.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/city.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: City 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/city.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/city.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/dungeon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dungeon -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/dungeon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/dungeon.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/monster.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monster -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/monster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/fourth_page/monster.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/freebooters_on_the_frontier/char_2.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Personnage 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/freebooters_on_the_frontier/char_2.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Character 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/freebooters_on_the_frontier/spells.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Charme 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/freebooters_on_the_frontier/spells.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Spell 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/belongings.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Belongings -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/belongings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/belongings.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/catalyst.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Catalyst -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/catalyst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/catalyst.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/collection.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/difficulty.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Difficulty (1-10) -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/difficulty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/difficulty.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/elements.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Elements 3 | useIconicsTextView: true -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/elements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/elements.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/likely_odds.meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/likely_odds.meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/likely_odds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/likely_odds.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/location.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Location -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/location.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/names.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Names -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/names.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/norse_runes.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Norse Runes -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/norse_runes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/norse_runes.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/random_event.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Random Event -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/random_event.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/random_event.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/scatter.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Scatter 3 | useIconicsTextView: true -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/scatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/scatter.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/sensory_snippet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/sensory_snippet.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/tags.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Tag Symbols 3 | useIconicsTextView: true -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/tags.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/virtue_vice.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Virtue & Vice -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/virtue_vice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/gma/virtue_vice.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/contents_of_pit.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Contents of Pit 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/corridors.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Corridors & Hallways 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/curses.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Curses 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/curses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/curses.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/doors.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Doors -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/doors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/doors.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/empty_rooms.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Empty Rooms -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/magic_pools.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Magic Pool / Fountain -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/things.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Things in Rooms 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/things.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/things.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/traps.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Traps 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/traps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/traps.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/tricks.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Tricks 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/tricks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/tricks.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/wfc.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Wall, Floor, Ceiling 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/wfc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/hack_and_slash/wfc.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/action_theme.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Action & Theme 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/challenge_rank.meta.yml: -------------------------------------------------------------------------------- 1 | name: Challenge Rank -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/coastal_waters.meta.yml: -------------------------------------------------------------------------------- 1 | name: Coastal Waters -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/collection.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/combataction.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Combat Action 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/harm.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Harm 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/harm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/harm.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/location.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/location.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/mysticbacklash.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mystic Backlash 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/name.meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/name.meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/name.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/npc.meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/npc.meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/npc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/npc.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/paytheprice.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Pay the Price 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/paytheprice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/paytheprice.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/plottwist.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Plot Twist 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/plottwist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/plottwist.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/region.meta.yml: -------------------------------------------------------------------------------- 1 | name: Region -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/region.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/region.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/settlement.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Settlement Name 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/settlement_trouble.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Settlement Trouble 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/stress.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Stress 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/stress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ironsworn/stress.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/kaigaku/animals.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Animal 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/kaigaku/animals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/kaigaku/animals.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/kaigaku/battlefield_enemies.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Battlefield Enemy 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/kaigaku/collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/kaigaku/collection.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/kaigaku/court_enemies.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Court Enemy 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/kaigaku/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/kaigaku/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/kaigaku/urban_enemies.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Urban Enemy 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/character.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Character 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/character.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/character.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/collection.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/gear.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Starting Gear 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/gear.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/gear.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/knave_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/knave_base.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/name.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Name 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/name.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/reaction.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: NPC Reaction 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/reaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/reaction.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/spell.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Levelless Spell 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/spell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/spell.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/traits.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Char Traits 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/traits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/knave/traits.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/macchiato_monsters/monsters.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monster -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/after_the_party.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Tras la fiesta -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/after_the_party.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: After the Party -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/animals.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Animal -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/animals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/animals.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/books.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/books.es.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/books.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Libro -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/books.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Book -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/books.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/books.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/buildings.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Edificios 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/buildings.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Buildings 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/characters.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Personaje 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/characters.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Character -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/city.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/city.es.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/city.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Ciudad 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/city.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: City 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/city.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/city.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/district.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Distrito 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/district.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: District 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/district.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/district.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/divine_domains.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dominios Divinos -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/divine_domains.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Divine Domains -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/dungeon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dungeon -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/dungeon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/dungeon.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/dungeon_room.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Habitaciones de dungeon -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/dungeon_room.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dungeon Room 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/dungeon_trick.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Trucos dungeon 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/dungeon_trick.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dungeon Trick -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/factions.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Facción 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/factions.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Faction -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/factions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/factions.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/forage.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Forrajee 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/forage.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Forage -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/forage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/forage.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/inns.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/inns.es.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/inns.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Posada 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/inns.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Inn 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/inns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/inns.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/insanities.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Locuras 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/insanities.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Insanity 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/items.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Objeto 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/items.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Item 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/items.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/items.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/magical_ingredients.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Ingredientes mágicos -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/magical_ingredients.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Magical Ingredient -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/meta.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/meta.es.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/misfortunes.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Infortunios -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/misfortunes.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Misfortune -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/missions.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Misiones -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/missions.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mission -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/missions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/missions.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/monsters.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monstruo -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/monsters.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monster 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/monsters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/monsters.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr01_afflictions.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Affliction 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr01_characters.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Character 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr01_items.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Item 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr01_magic.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Spell 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr01_monsters.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monster -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr01_potion_effects.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Potion Effect -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr_city.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr_city.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr_magic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr_magic.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr_maze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr_maze.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr_wild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mr_wild.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mutations.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mutaciones 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/mutations.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mutation 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/names.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/names.es.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/names.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Nombres -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/names.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Name 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/names.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/npcs.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/npcs.es.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/npcs.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: PNJ -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/npcs.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: NPC -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/npcs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/npcs.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/omens_catastrophes.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Augurios & Catástrofes mágicas -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/omens_catastrophes.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Omens & Magical Catastrophes -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/pick_pocket.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: robar bolsillo / saquear -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/pick_pocket.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Pick Pocket / Loot -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/potions.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Pociones -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/potions.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Potion -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/potions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/potions.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/spells.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Conjuro -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/spells.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Spell -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/spells.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/spells.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/traps.es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/traps.es.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/traps.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Trampa 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/traps.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Trap 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/traps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/traps.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/treasure.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Tesoro -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/treasure.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Treasure -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/treasure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/treasure.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/wild_disc.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Descubrimientos naturales 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/wild_disc.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Wilderness Discovery -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/wilderness.meta.es.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Regiones naturales -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/maze_rats/wilderness.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Wilderness Region -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/backgrounds.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Human Backgrounds -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/backgrounds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/backgrounds.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/collection.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/magic_item.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Magic Item -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/magic_item.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/magic_item.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/minor_arcana.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Minor Arcana -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/minor_arcana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/minor_arcana.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/names.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Holmesian Random Names -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/names.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/patron_deity.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Patron Deity -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/patron_deity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/patron_deity.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/potion_quaffing_contest.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dungeon Cocktail -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/so1um.meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/so1um.meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/so1um.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/misc/so1um.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/checkpoint_response.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Checkpoint Response -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/critical_injury.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Critical Injury -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/event_ark.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Event - Ark -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/event_zone.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Event - Zone -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/feral_effect.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feral Effect 3 | useIconicsTextView: true -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/mutation.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mutation -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/mutation_misfire.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mutation Misfire 3 | useIconicsTextView: true -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/npc_zone_exped.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: NPC Zone Expedition 3 | useIconicsTextView: true -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/npcs.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Random NPC -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/scrap.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Scrap -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/threat_ark.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Threat - Ark -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/threat_zone.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Threat - Zone -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/mutant_year_zero/zone_sector_mood.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Zone Sector Mood -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/creature.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Créature 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/creature.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Creature -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/creature_beast.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bête 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/creature_beast.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Beast -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/creature_human.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Humain 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/creature_human.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Human 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/creature_humanoid.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Humanoïde 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/creature_humanoid.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Humanoid 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/creature_monster.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monstre 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/creature_monster.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monster -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/danger.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Danger 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/danger.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Danger 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/details.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Détails 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/discovery.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Découverte 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/discovery.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Discovery -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/dungeon.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Donjon 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/dungeon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Dungeon -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/explore_dungeon.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Exploration de Donjon 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/explore_dungeon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Explore Dungeon 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/follower.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Recrues 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/follower.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Follower 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/names_arpad.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Arpad 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/names_oloru.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Oloru -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/names_tamanarugan.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Tamanarugan -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/names_valkoina.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Valkoina 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/npc.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: PNJ -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/npc.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: NPC -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/npc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/npc.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/npc_rural.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: PNJ Rural 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/npc_rural.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Rural NPC 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/npc_urban.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: PNJ Urbain -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/npc_urban.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Urban NPC -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/npc_wilderness.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: PNJ Terres Sauvages 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/npc_wilderness.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Wild. NPC 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/place_names.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Lieu -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/place_names.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Place -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/region_names.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Région 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/region_names.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Region 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/steading.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Localité 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/steading.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Steading -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/treasure_item.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Objet -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/treasure_item.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Item -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/treasure_unguarded.meta.fr.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Trésor non-gardé 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/perilous_wilds/treasure_unguarded.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Unguarded Treasure 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/background.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Character Background -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/class_occupation.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Class & Occupation -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/item.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Item -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/item.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/item.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/monster_features.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monster Features -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/npc.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: NPC -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/npc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/npc.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/npc_reaction.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: NPC/Creature Reaction -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/out_of_action.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Out of Action -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/portal_rats/portal_destination.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Portal Destination -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/collection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/collection.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_automaton.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's the automaton's origin? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_banquet.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What’s on the banquet table? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_barbarian.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What does the barbarian fear most? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_believe.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What do you believe? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_bird_beak.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What is in the bird's beak? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_blob.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What kind of amorphous blob is in the dungeon? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_blob.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_blob.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_dark_secret.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What dark secret does he keep? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_demon_from.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where is the demon from? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_demon_kind.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What kind of demon is it? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_dragon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's the dragon actually hoarding? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_dungeon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who built this dungeon? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_elves.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What kind of Elves are they? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_elves.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_elves.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_frost_dragon.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where was the Frost Dragon born? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_guard.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Why is the guard staring at you? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_guard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_guard.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_hirer.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who has hired the adventurers? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_hirer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_hirer.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_hybrid.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What hybrid has the lunatic wizard Chiasmus created? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_locked_door.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Why can't you open the door/portal? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_medical_procedure.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What medical procedure is the ____ trying to perform? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_monster_gen.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monster Generator -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_necromancer.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where is the Necromancer? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_oath.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What oath have you sworn? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_oath.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_oath.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_orc_chieftan.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What is the Orc Chieftan wielding? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_potion.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What else goes into the potion? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_queen.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who is Queen of the northern kingdoms? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_queen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_queen.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_rider.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who is that hooded rider? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_rider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_rider.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_searching.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who are we searching for? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_sepulchre.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What is in the dust-shrouded sepulchre? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_shopkeeper.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What’s the story with this shopkeeper? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_sky.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What is falling from the sky? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_sky.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_sky.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_stole_blade.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who stole the Blade of Saints? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_summoned.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What has the disgraced priest summoned? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_time_period.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What time period is it? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_treasure_chest.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's in the treasure chest? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_treasure_seeker.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who else seeks the treasure within this dungeon? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_wall_runes.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's written on the wall in ancient Dwarven? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_wand.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What did waving the wand do? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_wand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_wand.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_warrior_armor.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who forged the warrior's armor? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/fant_where_going.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where are they going? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_bites.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where did those bites come from? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_bodies_hidden.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where are the bodies hidden? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_body_part.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Which part of the body is it? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_ceiling.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's hanging from the ceiling? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_clue.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What’s the cryptic clue in anagram form? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_crypt.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What kind of sanguiphages are swarming from the crypt? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_cure.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: How do you cure it? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_escape.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: How did it escape? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_familiar.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Why does he look familiar? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_love.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Why do you love this so much? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_make_it_stop.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What will you do to make it stop? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_memories.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's changing your memories? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_monster_type.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What kind of monster is it? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_noise.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What noise is coming from the other room? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_signature.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What is the murderer's signature? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_soul.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's this soul worth? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_they.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who are They, exactly? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_under_bed.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's under the bed? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_under_skin.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's under your skin? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_unseen_entity.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Why can't you see the entity? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_vices.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What are his/her vices? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/horror_zombie_story.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What part of the zombie story is this? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_duffel.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's in the duffel bag? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_fingerprints.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Whose fingerprints are all over the place? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_insects.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What types of insects are in the room? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_liquid.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What kind of liquid is in that bottle? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_magic.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What kind of magic is it? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_pool.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What’s in the swimming pool? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_primary_objective.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What is the unit's primary objective? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_secret.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's your secret? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_smell.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What does it smell like? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_tonight.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where is it all going down tonight? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/modern_vehicle.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What kind of vehicle did you just steal? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_ancient_terminal.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What happens when you power up the ancient terminal? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_anomaly.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What kind of anomaly is it? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_bounty_hunter.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where did the bounty hunter flee to? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_escape.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Why do you want to escape? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_land.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Why do you need to land? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_land.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_land.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_malfunction.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What piece of equipment just malfunctioned? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_passengers.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who are the starship passengers? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_rubble.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What do you find when searching the rubble? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_starship_type.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What kind of starship is it? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_went_dark.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What part of the ship just went dark? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/scifi_xenomorph.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: The xenomorph is on the ship, but where? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/supers_connections.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's the connection between these two characters? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/supers_origin.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's the superhero's origin? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/supers_protecting.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who is the hero protecting? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/supers_villain_lair.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where is the supervillain's secret lair? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/supers_villain_rant.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's the villain ranting about? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/supers_villain_target.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who is the villain targeting? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/supers_weakness.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What's the superhero's weakness? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/roll_xx/supers_who_the_heck.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Who the heck is that? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/adventure_complication.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Adventure Complication -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/adventure_idea.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Adventure Idea -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/adventure_title.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Adventure Title -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/antagonist.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Antagonist -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/complication.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Character Complication -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/forgotten_artifacts.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Forgotten Artifact -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/life_events.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Random Life Event -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/meta.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/monster.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Monster -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/monster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/monster.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/opponent_reaction.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Opponent Reaction -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/reward.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Reward -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/reward.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/reward.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/spellbook_effects.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Strange Effects of Ancient Spellbooks -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/supporting_character.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Supporting Character -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/travel_hazards.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Travel Hazard -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/treasure.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Treasure -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/treasure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/treasure.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/what_has_changed.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: What has changed since we left? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/ss_and_ss/where_gold_go.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Where Did My Gold Go? -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/abandoned_structure.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Abandoned Structure 3 | 4 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/adventure_seed.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Adventure Seed 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/alien.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Alien -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/animal.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Animal 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/architecture.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Architecture 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/backwater_spaceport.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Backwater Spaceport -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/charclass_expert.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Expert -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/charclass_psychic.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Psychic -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/charclass_warrior.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Warrior -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/corporation.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Corporation -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/faction_2.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Faction -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/family_background.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Family Background 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/heresy.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Heresy -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/life_event.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Life Event -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/mandate_tech_hand_held.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mandate Tech (Hand-Held) -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/mandate_tech_worn.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Mandate Tech (Worn) -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/names_arabic.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Arabic -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/names_chinese.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Chinese -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/names_english.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: English -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/names_indian.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Indian 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/names_japanese.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Japanese -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/names_nigerian.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Nigerian -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/names_russian.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Russian -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/names_spanish.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Spanish -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/npc.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: NPC -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/political_party.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Political Party 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/religion.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Religion -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/religious_revolt.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Religious Revolt -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/room_dressing.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Room Dressing -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/scavenger_fleet.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Scavenger Fleet -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/temple_shrine.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: Temple or Shrine 3 | 4 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/world_2.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: World 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/main/resources/org/stevesea/adventuresmith/core/stars_without_number/world_tag.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: World Tag 3 | -------------------------------------------------------------------------------- /adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/DiceParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/DiceParserTest.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/Exerciser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/Exerciser.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/GeneratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/GeneratorTest.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/RangeMapTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/RangeMapTest.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/TestHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/TestHelpers.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/maze_rats/MazeRatsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/maze_rats/MazeRatsTest.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/perilous_wilds/PwTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/perilous_wilds/PwTest.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/ss_and_ss/SsAndSsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/java/org/stevesea/adventuresmith/core/ss_and_ss/SsAndSsTest.kt -------------------------------------------------------------------------------- /adventuresmith-core/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/resources/logback.xml -------------------------------------------------------------------------------- /adventuresmith-core/src/test/resources/org/stevesea/adventuresmith/core/test_resource.meta.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name: test resource -------------------------------------------------------------------------------- /adventuresmith-core/src/test/resources/org/stevesea/adventuresmith/core/test_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/resources/org/stevesea/adventuresmith/core/test_resource.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/test/resources/org/stevesea/adventuresmith/core/test_sibling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/resources/org/stevesea/adventuresmith/core/test_sibling.yml -------------------------------------------------------------------------------- /adventuresmith-core/src/test/resources/org/stevesea/adventuresmith/core/test_sibling2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/adventuresmith-core/src/test/resources/org/stevesea/adventuresmith/core/test_sibling2.yml -------------------------------------------------------------------------------- /advsmith_signing.gradle.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/advsmith_signing.gradle.enc -------------------------------------------------------------------------------- /android.jks.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/android.jks.enc -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /src/main/assets 3 | .settings -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/debug.keystore -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/debug/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/kotlin/org/stevesea/adventuresmith/AboutActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/kotlin/org/stevesea/adventuresmith/AboutActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/stevesea/adventuresmith/AdventuresmithActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/kotlin/org/stevesea/adventuresmith/AdventuresmithActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/stevesea/adventuresmith/AdventuresmithApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/kotlin/org/stevesea/adventuresmith/AdventuresmithApp.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/stevesea/adventuresmith/AttributionActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/kotlin/org/stevesea/adventuresmith/AttributionActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/stevesea/adventuresmith/GeneratorButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/kotlin/org/stevesea/adventuresmith/GeneratorButton.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/stevesea/adventuresmith/ResultItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/kotlin/org/stevesea/adventuresmith/ResultItem.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/org/stevesea/adventuresmith/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/kotlin/org/stevesea/adventuresmith/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/advsmth_splasha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/advsmth_splasha.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/advsmth_splashb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/advsmth_splashb.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/alexander_great_bats_rats_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/alexander_great_bats_rats_1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/alexander_great_bats_rats_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/alexander_great_bats_rats_2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/animal_geometry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/animal_geometry.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/bear_army.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/bear_army.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/cockatrice_crocodile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/cockatrice_crocodile.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/death_king_arthur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/death_king_arthur.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/death_lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/death_lion.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/demon_glasses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/demon_glasses.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/elephant_rat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/elephant_rat.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/fallen_angels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/fallen_angels.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/fallen_angels_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/fallen_angels_2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/goat_musician.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/goat_musician.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/green_demon_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/green_demon_1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/griffin_hog_hug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/griffin_hog_hug.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/header_graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/header_graphic.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/header_graphic_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/header_graphic_b.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/initial_d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/initial_d.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/organ_bunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/organ_bunny.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/perseus_and_andromeda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/perseus_and_andromeda.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/rabbit_knight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/rabbit_knight.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/sagittarius.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/sagittarius.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/siege_rabbits.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/siege_rabbits.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/snail_and_turtle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable-xxhdpi/snail_and_turtle.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_advsmth_splasha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable/ic_advsmth_splasha.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_delete_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable/ic_delete_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_email_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable/ic_email_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable/ic_settings_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_share_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable/ic_share_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/drawable/splash.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/layout/activity_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_adventuresmith.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/layout/activity_adventuresmith.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_attribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/layout/activity_attribution.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/button_grid_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/layout/button_grid_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/result_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/layout/result_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/result_select_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/menu/result_select_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/adventuresmith_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/mipmap-mdpi/adventuresmith_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/adventuresmith_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/mipmap-xhdpi/adventuresmith_icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/adventuresmith_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/mipmap-xxxhdpi/adventuresmith_icon.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w1000dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values-w1000dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w500dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values-w500dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w800dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values-w800dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values/drawables.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings_thanks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values/strings_thanks.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/release/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/app/src/release/res/values/strings.xml -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/circle.yml -------------------------------------------------------------------------------- /content_attribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/content_attribution.md -------------------------------------------------------------------------------- /docs/images/asthmatic_half_orc_bandit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/docs/images/asthmatic_half_orc_bandit.png -------------------------------------------------------------------------------- /docs/images/nav_drawer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/docs/images/nav_drawer1.png -------------------------------------------------------------------------------- /docs/images/nav_drawer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/docs/images/nav_drawer2.png -------------------------------------------------------------------------------- /docs/images/npc_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/docs/images/npc_sample.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/gradle/detekt.yml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/gradlew.bat -------------------------------------------------------------------------------- /privacy_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/privacy_policy.md -------------------------------------------------------------------------------- /projectFilesBackup/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/projectFilesBackup/.idea/workspace.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesea/Adventuresmith/HEAD/settings.gradle --------------------------------------------------------------------------------