├── .gitattributes ├── 0_terrain_furniture ├── barrels and chests.json ├── construction groups.json ├── construction.json ├── furniture.json ├── furniture_flora.json ├── terrain_trees.json ├── terrains │ ├── terrains.json │ └── veins.json └── transformations.json ├── README.md ├── blacklists ├── item blacklist.txt ├── portal_storm_effect_on_condition.json ├── recipe_blacklists.json ├── recipe_conversion.json ├── roads to dirt patch.json ├── skill blacklist.json ├── special_migration.json ├── terrain_conversions.json └── vehicle_blacklist.json ├── city stuff ├── aquatic.json ├── blacksmiths │ ├── blacksmith with apprentice │ │ ├── blacksmith apprentice npc.json │ │ ├── blacksmith master npc.json │ │ └── blacksmith shop2.json │ ├── blacksmith with family │ │ ├── blacksmith npc husband.json │ │ ├── blacksmith npc kid.json │ │ ├── blacksmith npc's wife.json │ │ └── blacksmith shop3.json │ ├── blacksmith_shop_item_group.json │ └── lone blacksmith │ │ └── blacksmith shop1.json ├── city_building_palette.json ├── city_buildings_ids.json ├── governmental.json ├── homes │ ├── homes.json │ └── nested_extras.json ├── industry.json ├── item_groups.json ├── market │ ├── city_market.json │ └── stalls.json ├── nested.json ├── overmap_terrain_ids.json ├── rangen buildings │ ├── rangen_template.json │ └── rooms.json ├── roads │ └── roads.json ├── taverns │ └── Buildings │ │ ├── mapgen.json │ │ ├── oms.json │ │ └── omt.json └── walls │ └── walls.json ├── emit.json ├── fields.json ├── item groups ├── books.json ├── flora harvest.json ├── item_groups.json ├── magic_items.json └── spell_scrolls.json ├── items ├── 1-rune_eff.json ├── 1-rune_ench.json ├── 1-rune_spells.json ├── 2-item_spells.json ├── alchemy │ ├── earth_potions.json │ ├── fire_potions.json │ ├── otherworldly_potions.json │ └── water_potions.json ├── ammo.json ├── coinage.json ├── comestibles.json ├── corpses.json ├── cult items.json ├── enchanted │ ├── divine │ │ ├── divine weapons.json │ │ ├── divine_wands.json │ │ ├── divine_weapons_plus1.json │ │ ├── divine_weapons_plus2.json │ │ ├── divine_weapons_plus3.json │ │ ├── divine_weapons_plus4.json │ │ └── magic_amulets.json │ ├── enchanted armor │ │ ├── armor_plus1.json │ │ ├── badges.json │ │ ├── enchanted tattoos.json │ │ ├── magic_feet.json │ │ ├── magic_head.json │ │ ├── magic_neck.json │ │ ├── magic_rings.json │ │ ├── magic_torso.json │ │ └── storage.json │ ├── enchanted trinkets │ │ ├── enchanted_trinkets.json │ │ ├── magic_trinkets.json │ │ └── miscellaneous.json │ ├── enchanted weapons │ │ ├── ranged_plus1.json │ │ ├── ranged_plus2.json │ │ ├── ranged_plus3.json │ │ ├── ranged_plus4.json │ │ ├── ranged_plus5.json │ │ ├── ranged_plus5.txt │ │ ├── runed weapons │ │ │ ├── electric runes │ │ │ │ ├── electric_rune.json │ │ │ │ ├── electric_rune_plus1.json │ │ │ │ ├── electric_rune_plus2.json │ │ │ │ ├── electric_rune_plus3.json │ │ │ │ └── electric_rune_plus4.json │ │ │ ├── flame runes │ │ │ │ ├── flame_rune.json │ │ │ │ ├── flame_rune_plus1.json │ │ │ │ ├── flame_rune_plus2.json │ │ │ │ ├── flame_rune_plus3.json │ │ │ │ └── flame_rune_plus4.json │ │ │ ├── frost runes │ │ │ │ ├── weapons_frost.json │ │ │ │ ├── weapons_frost_plus1.json │ │ │ │ ├── weapons_frost_plus2.json │ │ │ │ ├── weapons_frost_plus3.json │ │ │ │ └── weapons_frost_plus4.json │ │ │ └── weapon_rune.json │ │ ├── wands │ │ │ ├── druid.json │ │ │ ├── staves.json │ │ │ └── wands.json │ │ ├── weapon_plus1.json │ │ ├── weapon_plus2.json │ │ ├── weapon_plus3.json │ │ ├── weapon_plus4.json │ │ └── weapon_plus5.json │ ├── occult │ │ ├── misc_magic_items.json │ │ ├── summoning_items.json │ │ └── wands.json │ ├── summoning_items.json │ ├── templates.json │ └── trap_sigils.json ├── ethereal.json ├── fake.json ├── fluff.json ├── ink-related items.json ├── item_cat.json ├── maps.json ├── materials │ ├── incense.json │ ├── ores.json │ └── wood.json ├── old and broken weapons.json ├── plants │ ├── plants.json │ └── seed.json ├── qualities.json ├── recipe_books.json ├── rune.json ├── rune_matec.json ├── shields.json ├── tools │ └── tools.json ├── torso_stroage.json ├── trophies and patches.json └── weapon.json ├── locations ├── bandit_camp.json ├── caves │ ├── crystal caverns │ │ ├── crystal_cave_base.json │ │ └── crystal_cave_nested.json │ ├── demon ruins │ │ ├── blank demon ruins.json │ │ └── nested demon ruins.json │ ├── dwarven city │ │ ├── home rooms.json │ │ ├── subterranean administrative.json │ │ └── subterranean homes.json │ ├── enterances │ │ └── cave_enter.json │ ├── flooded cave │ │ ├── flooded_cave_base.json │ │ └── flooded_cave_nested.json │ ├── mushroom forest │ │ ├── mforest_blank.json │ │ └── mforest_nested.json │ ├── ruined citadel │ │ ├── nested.json │ │ └── ruined citadel.json │ ├── settlement ruins │ │ ├── nested buildings.json │ │ ├── roads.json │ │ └── ruined settlement.json │ ├── underground caves │ │ ├── cave_base.json │ │ └── cave_nested.json │ └── underground swamp │ │ ├── uswamp_base.json │ │ ├── uswamp_blank.json │ │ └── uswamp_nested.json ├── cults │ ├── demon_cult.json │ ├── eldritch_cult.json │ └── hexbound_cult.json ├── dragon lair │ ├── dragon_lair.json │ └── nested.json ├── druid_circle.json ├── eldritch_cult.json ├── farms.json ├── farms │ ├── farms.json │ └── ranch.json ├── goblin camp │ ├── goblin_camp.json │ └── rangen.json ├── guild hall.json ├── hobgoblin camp │ └── hobgoblin_camp.json ├── lake specials │ ├── kraken_lair.json │ └── water_temple.json ├── map extras │ ├── extra_ids.json │ └── mapgen.json ├── mine │ ├── blank_shaft.json │ ├── mine_surface.json │ └── ore_veins.json ├── mineral_pond.json ├── mtc cathedral │ └── mtc_cathedral.json ├── old_catacombs.json ├── palletes.json ├── ruined city │ ├── city_ruins.json │ └── nested.json ├── watchtower.json ├── waystation.json ├── werebeast_lair.json ├── wizard academy │ ├── nested.json │ ├── trial_maze.json │ └── wizard_academy.json └── wizard_study.json ├── modinfo.json ├── monsters ├── 1-effects.json ├── 2-fields.json ├── 3-spells.json ├── Constructs │ ├── animated_objects.json │ ├── elementals.json │ └── golems.json ├── Demons │ ├── mon_imp.json │ └── mon_shyleggah.json ├── Dragons │ ├── effect.json │ ├── field.json │ ├── mons.json │ └── spells.json ├── Undead │ ├── Ghosts.json │ ├── Skely.json │ └── Zed.json ├── Wildlife │ ├── fish.json │ ├── gastropods.json │ └── insects.json ├── drops.json ├── harvest.json ├── mon_bugbear.json ├── mon_hobgoblin.json ├── monammogun.json ├── mons.json ├── monstergroups.json ├── speech.json └── werebeasts.json ├── mutations ├── item_mutations.json ├── mutagen.json ├── recycled_mutations.json └── the_blood.json ├── npc stuff ├── NPC fantasy demographics patch.json ├── NPC worn and wield overrides.json ├── backgrounds │ ├── BG_acolyte.json │ ├── BG_anthropologist.json │ ├── BG_archaeologist.json │ ├── BG_charlatan.json │ ├── BG_city_watch.json │ ├── BG_delta_farmer.json │ ├── BG_dwarven_craftsman.json │ ├── BG_traits.json │ ├── Backstory_trait_groups.json │ ├── background_missions.json │ ├── backgrounds_intro_table.json │ └── player_backgrounds.json ├── bandits │ └── bandits.json ├── blacksmiths │ ├── blacksmith_missions.json │ └── lone │ │ ├── TALK_NPC_LONE_BLACKSMITH.json │ │ └── lone blacksmith npc.json ├── citizens │ ├── TALK_CARRIAGE_MAKER.json │ ├── TALK_CHILD.json │ ├── TALK_DRY_DOCK_MANAGER.json │ ├── TALK_GAMBLER.json │ ├── TALK_INFIRMARY_HEAD.json │ ├── TALK_LOGGER.json │ ├── TALK_NPC_GENERIC_CITIZEN.json │ ├── TALK_PRIEST.json │ ├── TALK_SHOPKEEPERS.json │ ├── TALK_STABLEMASTER.json │ ├── TALK_TELLER.json │ ├── TALK_WORSHIPER.json │ ├── females │ │ └── generic female citizen.json │ ├── generic │ │ └── npcs.json │ ├── males │ │ └── generic male citizen.json │ └── missions.json ├── classes.json ├── combat │ ├── dragonslayers │ │ ├── TALK_NPC_RETIRED_DRAGONSLAYER.json │ │ ├── missions.json │ │ └── retired dragonslayer npc.json │ ├── knights │ │ ├── TALK_NPC_STATIONED_KNIGHT.json │ │ └── stationed knight.json │ ├── mercenaries │ │ ├── TALK_MERCENARY_FRIENDLY.json │ │ └── mercenaries.json │ └── rogues │ │ ├── TALK_NPC_GAMBLING_ROGUE.json │ │ ├── TALK_NPC_NAUGHTY_ROGUE.json │ │ ├── gambling rogue.json │ │ └── naughty rogue.json ├── cultists │ ├── MISSION_OFFER.json │ ├── TALK_CULT_PROSPECT.json │ ├── cultists.json │ ├── elder cultists │ │ ├── TALK_CAPTAIN.json │ │ ├── TALK_DEFENDER.json │ │ ├── TALK_ELDER.json │ │ ├── TALK_HOMAGE.json │ │ ├── TALK_LOREVESSEL.json │ │ ├── TALK_MEMBER.json │ │ ├── TALK_ONOCTI.json │ │ ├── TALK_RECRUITER.json │ │ └── missions.json │ └── fiend cultists │ │ ├── TALK_FIEND_LEADER.json │ │ ├── TALK_FIEND_MAGICIAN.json │ │ ├── TALK_FIEND_SACRIFICER.json │ │ └── missions.json ├── erotic │ └── dancers │ │ ├── TALK_NPC_EXCITED_DANCER.json │ │ ├── TALK_NPC_NERVOUS_DANCER.json │ │ ├── TALK_NPC_TEASING_DANCER.json │ │ ├── excited dancer.json │ │ ├── nervous dancer.json │ │ └── teasing dancer.json ├── factions.json ├── generic_missions.json ├── guards │ ├── TALK_NPC_BOUNCER.json │ ├── TALK_NPC_CITY_GUARD.json │ ├── TALK_NPC_DRUNK_GUARD.json │ ├── TALK_NPC_GUARD_CAPTAIN.json │ ├── TALK_NPC_HORSE_GUARD.json │ ├── bouncer npc.json │ ├── city guard npc.json │ ├── drunk city guard npc.json │ ├── horse guard npc.json │ └── missions.json ├── guild masters │ ├── TALK_GUILD_MASTER.json │ ├── guild masters.json │ └── missions.json ├── menial and common │ ├── farmers │ │ ├── NPC_FARMERS.json │ │ ├── TALK_FARMERS.json │ │ ├── TALK_FARMHAND.json │ │ ├── TALK_RANCHAND.json │ │ ├── TALK_RANCHERS.json │ │ ├── farmers.json │ │ └── missions.json │ ├── fishers │ │ ├── TALK_NPC_GENERIC_FISHER.json │ │ ├── generic fisher npc.json │ │ └── missions.json │ ├── kitchenstaff │ │ ├── TALK_NPC_GENERIC_KITCHEN.json │ │ └── generic kitchen npc.json │ ├── maids │ │ ├── TALK_NPC_GENERIC_MAID.json │ │ └── generic maid npc.json │ ├── miners │ │ ├── TALK_MINE_BOSS.json │ │ └── miners.json │ ├── stall vendors │ │ ├── NPC_STALL_VENDORS.json │ │ └── generic_stall_vendors.json │ └── wenches │ │ ├── TALK_NPC_GENERIC_WENCH.json │ │ └── generic wench npc.json ├── religious │ ├── TALK_ACOLYTE.json │ ├── TALK_CLERIC.json │ ├── TALK_HOLY_SCROLLKEEPER.json │ ├── acolytes.json │ └── missions.json ├── snippets.json ├── tavernkeeps │ └── generic │ │ ├── TALK_NPC_GENERIC_TAVERNKEEP.json │ │ ├── generic tavernkeep npc.json │ │ └── missions.json └── wizards │ ├── TALK_APPRENTICE.json │ ├── academy │ ├── TALK_ACADEMY_APPRENTICE.json │ ├── TALK_ACADEMY_INFUSIONIST.json │ ├── TALK_ACADEMY_LIBRARIAN.json │ ├── TALK_ACADEMY_TATOO_ARTIST.json │ ├── TALK_ALCHEMY_INSTRUCTOR.json │ ├── TALK_DEAN.json │ ├── TALK_FIRST_YEAR_INSTRUCTOR.json │ ├── TALK_FOURTH_YEAR_INSTRUCTOR.json │ ├── TALK_INFUSION_INSTRUCTOR.json │ ├── TALK_RECEPTIONIST.json │ ├── TALK_SECOND_YEAR_INSTRUCTOR.json │ └── TALK_THIRD_YEAR_INSTRUCTOR.json │ ├── apprentices.json │ ├── druids │ ├── TALK_DRUID_MASTER.json │ ├── druids.json │ └── missions.json │ ├── mage_snippets.json │ └── missions.json ├── overmaps ├── overmap_special.json └── overmap_terrain.json ├── recipies ├── chemicals.json ├── cult │ ├── armor.json │ └── spellbooks.json ├── deconstruct │ ├── deconstruct.json │ └── magic weapons.json ├── magic items │ ├── armor │ │ ├── armor_plus1.json │ │ ├── divine │ │ │ └── amulets.json │ │ └── tatoos.json │ ├── armor_plus1.json │ ├── divine │ │ ├── amulets.json │ │ ├── divine_weapons.json │ │ ├── divine_weapons_plus1.json │ │ ├── divine_weapons_plus2.json │ │ ├── divine_weapons_plus3.json │ │ └── divine_weapons_plus4.json │ ├── enchanted weapons │ │ ├── electric │ │ │ ├── electric_rune.json │ │ │ ├── electric_rune_plus1.json │ │ │ ├── electric_rune_plus2.json │ │ │ ├── electric_rune_plus3.json │ │ │ └── electric_rune_plus4.json │ │ ├── flame │ │ │ ├── flame_rune.json │ │ │ ├── flame_rune_plus1.json │ │ │ ├── flame_rune_plus2.json │ │ │ ├── flame_rune_plus3.json │ │ │ └── flame_rune_plus4.json │ │ ├── frost │ │ │ ├── ice_rune.json │ │ │ ├── ice_rune_plus1.json │ │ │ ├── ice_rune_plus2.json │ │ │ ├── ice_rune_plus3.json │ │ │ └── ice_rune_plus4.json │ │ ├── weapon_plus1.json │ │ ├── weapon_plus2.json │ │ ├── weapon_plus3.json │ │ └── weapon_plus4.json │ ├── magic_chemicals.json │ ├── magic_tools.json │ ├── materials.json │ ├── misc │ │ ├── enchanted_trinkets.json │ │ └── materials.json │ ├── potions │ │ ├── concentrated.json │ │ └── potions.json │ ├── summoning_objects.json │ ├── traps.json │ └── wands.json ├── metals.json ├── misc.json ├── proficiencies.json ├── tools.json └── weapons, armor, and ammo │ ├── shields.json │ └── weapons.json ├── regional.json ├── requirements ├── alchemy.json └── magic.json ├── skills.json ├── snippets ├── epilouges.json └── personal epilouges.json ├── spellbooks ├── spell scrolls │ ├── cleric scrolls │ │ ├── cleric_cantrips.json │ │ ├── life_scrolls.json │ │ ├── light_scrolls.json │ │ ├── twighlight_scrolls.json │ │ └── war_scrolls.json │ ├── druid scrolls │ │ └── druid_scrolls.json │ ├── mage scrolls │ │ └── mage_scrolls.json │ └── warlock scrolls │ │ ├── eldritch_scrolls.json │ │ ├── fiend_scrolls.json │ │ ├── hexbound_scrolls.json │ │ └── warlock_cantrips.json └── spellbooks.json ├── spells_effects_misc ├── classes │ ├── clerics.json │ ├── druids.json │ ├── warlocks.json │ └── wizards.json ├── cleric │ ├── cleric.json │ ├── life │ │ └── life_domain.json │ ├── light │ │ └── light_domain.json │ ├── twighlight │ │ └── twighight_domain.json │ └── war │ │ ├── animated weapons │ │ └── weapon_effect.json │ │ └── war_domain.json ├── druid │ └── druid_spells.json ├── effects_misc.json ├── items │ ├── item_effects.json │ ├── potion_effects.json │ ├── regen_effects.json │ ├── sigil_effects.json │ └── summoning_effects.json ├── mage │ ├── mage_spells.json │ └── spell effects │ │ ├── elemental_effect.json │ │ └── raise_dead.json ├── spells_misc.json └── warlock │ ├── eldritch │ ├── components.json │ ├── cult_spells.json │ ├── curses │ │ └── curses.json │ └── eldritch commune │ │ ├── commune_effects.json │ │ └── commune_items.json │ ├── fiend │ ├── fiend_spells.json │ └── summon_demons │ │ └── spawn_effects.json │ ├── hexbound │ └── hexbound_spells.json │ └── warlock_cantrips.json ├── starts, scenarios, and professions ├── scenario and races.json └── start locations.json ├── traps.json └── vehicles.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/.gitattributes -------------------------------------------------------------------------------- /0_terrain_furniture/barrels and chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/0_terrain_furniture/barrels and chests.json -------------------------------------------------------------------------------- /0_terrain_furniture/construction groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/0_terrain_furniture/construction groups.json -------------------------------------------------------------------------------- /0_terrain_furniture/construction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/0_terrain_furniture/construction.json -------------------------------------------------------------------------------- /0_terrain_furniture/furniture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/0_terrain_furniture/furniture.json -------------------------------------------------------------------------------- /0_terrain_furniture/furniture_flora.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/0_terrain_furniture/furniture_flora.json -------------------------------------------------------------------------------- /0_terrain_furniture/terrain_trees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/0_terrain_furniture/terrain_trees.json -------------------------------------------------------------------------------- /0_terrain_furniture/terrains/terrains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/0_terrain_furniture/terrains/terrains.json -------------------------------------------------------------------------------- /0_terrain_furniture/terrains/veins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/0_terrain_furniture/terrains/veins.json -------------------------------------------------------------------------------- /0_terrain_furniture/transformations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/0_terrain_furniture/transformations.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/README.md -------------------------------------------------------------------------------- /blacklists/item blacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/blacklists/item blacklist.txt -------------------------------------------------------------------------------- /blacklists/portal_storm_effect_on_condition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/blacklists/portal_storm_effect_on_condition.json -------------------------------------------------------------------------------- /blacklists/recipe_blacklists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/blacklists/recipe_blacklists.json -------------------------------------------------------------------------------- /blacklists/recipe_conversion.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] -------------------------------------------------------------------------------- /blacklists/roads to dirt patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/blacklists/roads to dirt patch.json -------------------------------------------------------------------------------- /blacklists/skill blacklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/blacklists/skill blacklist.json -------------------------------------------------------------------------------- /blacklists/special_migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/blacklists/special_migration.json -------------------------------------------------------------------------------- /blacklists/terrain_conversions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/blacklists/terrain_conversions.json -------------------------------------------------------------------------------- /blacklists/vehicle_blacklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/blacklists/vehicle_blacklist.json -------------------------------------------------------------------------------- /city stuff/aquatic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/aquatic.json -------------------------------------------------------------------------------- /city stuff/blacksmiths/blacksmith with apprentice/blacksmith apprentice npc.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /city stuff/blacksmiths/blacksmith with apprentice/blacksmith master npc.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /city stuff/blacksmiths/blacksmith with apprentice/blacksmith shop2.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /city stuff/blacksmiths/blacksmith with family/blacksmith npc husband.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /city stuff/blacksmiths/blacksmith with family/blacksmith npc kid.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /city stuff/blacksmiths/blacksmith with family/blacksmith npc's wife.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /city stuff/blacksmiths/blacksmith with family/blacksmith shop3.json: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /city stuff/blacksmiths/blacksmith_shop_item_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/blacksmiths/blacksmith_shop_item_group.json -------------------------------------------------------------------------------- /city stuff/blacksmiths/lone blacksmith/blacksmith shop1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/blacksmiths/lone blacksmith/blacksmith shop1.json -------------------------------------------------------------------------------- /city stuff/city_building_palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/city_building_palette.json -------------------------------------------------------------------------------- /city stuff/city_buildings_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/city_buildings_ids.json -------------------------------------------------------------------------------- /city stuff/governmental.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/governmental.json -------------------------------------------------------------------------------- /city stuff/homes/homes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/homes/homes.json -------------------------------------------------------------------------------- /city stuff/homes/nested_extras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/homes/nested_extras.json -------------------------------------------------------------------------------- /city stuff/industry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/industry.json -------------------------------------------------------------------------------- /city stuff/item_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/item_groups.json -------------------------------------------------------------------------------- /city stuff/market/city_market.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/market/city_market.json -------------------------------------------------------------------------------- /city stuff/market/stalls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/market/stalls.json -------------------------------------------------------------------------------- /city stuff/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/nested.json -------------------------------------------------------------------------------- /city stuff/overmap_terrain_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/overmap_terrain_ids.json -------------------------------------------------------------------------------- /city stuff/rangen buildings/rangen_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/rangen buildings/rangen_template.json -------------------------------------------------------------------------------- /city stuff/rangen buildings/rooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/rangen buildings/rooms.json -------------------------------------------------------------------------------- /city stuff/roads/roads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/roads/roads.json -------------------------------------------------------------------------------- /city stuff/taverns/Buildings/mapgen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/taverns/Buildings/mapgen.json -------------------------------------------------------------------------------- /city stuff/taverns/Buildings/oms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/taverns/Buildings/oms.json -------------------------------------------------------------------------------- /city stuff/taverns/Buildings/omt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/taverns/Buildings/omt.json -------------------------------------------------------------------------------- /city stuff/walls/walls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/city stuff/walls/walls.json -------------------------------------------------------------------------------- /emit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/emit.json -------------------------------------------------------------------------------- /fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/fields.json -------------------------------------------------------------------------------- /item groups/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/item groups/books.json -------------------------------------------------------------------------------- /item groups/flora harvest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/item groups/flora harvest.json -------------------------------------------------------------------------------- /item groups/item_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/item groups/item_groups.json -------------------------------------------------------------------------------- /item groups/magic_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/item groups/magic_items.json -------------------------------------------------------------------------------- /item groups/spell_scrolls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/item groups/spell_scrolls.json -------------------------------------------------------------------------------- /items/1-rune_eff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/1-rune_eff.json -------------------------------------------------------------------------------- /items/1-rune_ench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/1-rune_ench.json -------------------------------------------------------------------------------- /items/1-rune_spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/1-rune_spells.json -------------------------------------------------------------------------------- /items/2-item_spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/2-item_spells.json -------------------------------------------------------------------------------- /items/alchemy/earth_potions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/alchemy/earth_potions.json -------------------------------------------------------------------------------- /items/alchemy/fire_potions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/alchemy/fire_potions.json -------------------------------------------------------------------------------- /items/alchemy/otherworldly_potions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/alchemy/otherworldly_potions.json -------------------------------------------------------------------------------- /items/alchemy/water_potions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/alchemy/water_potions.json -------------------------------------------------------------------------------- /items/ammo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/ammo.json -------------------------------------------------------------------------------- /items/coinage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/coinage.json -------------------------------------------------------------------------------- /items/comestibles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/comestibles.json -------------------------------------------------------------------------------- /items/corpses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/corpses.json -------------------------------------------------------------------------------- /items/cult items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/cult items.json -------------------------------------------------------------------------------- /items/enchanted/divine/divine weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/divine/divine weapons.json -------------------------------------------------------------------------------- /items/enchanted/divine/divine_wands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/divine/divine_wands.json -------------------------------------------------------------------------------- /items/enchanted/divine/divine_weapons_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/divine/divine_weapons_plus1.json -------------------------------------------------------------------------------- /items/enchanted/divine/divine_weapons_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/divine/divine_weapons_plus2.json -------------------------------------------------------------------------------- /items/enchanted/divine/divine_weapons_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/divine/divine_weapons_plus3.json -------------------------------------------------------------------------------- /items/enchanted/divine/divine_weapons_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/divine/divine_weapons_plus4.json -------------------------------------------------------------------------------- /items/enchanted/divine/magic_amulets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/divine/magic_amulets.json -------------------------------------------------------------------------------- /items/enchanted/enchanted armor/armor_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted armor/armor_plus1.json -------------------------------------------------------------------------------- /items/enchanted/enchanted armor/badges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted armor/badges.json -------------------------------------------------------------------------------- /items/enchanted/enchanted armor/enchanted tattoos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted armor/enchanted tattoos.json -------------------------------------------------------------------------------- /items/enchanted/enchanted armor/magic_feet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted armor/magic_feet.json -------------------------------------------------------------------------------- /items/enchanted/enchanted armor/magic_head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted armor/magic_head.json -------------------------------------------------------------------------------- /items/enchanted/enchanted armor/magic_neck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted armor/magic_neck.json -------------------------------------------------------------------------------- /items/enchanted/enchanted armor/magic_rings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted armor/magic_rings.json -------------------------------------------------------------------------------- /items/enchanted/enchanted armor/magic_torso.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted armor/magic_torso.json -------------------------------------------------------------------------------- /items/enchanted/enchanted armor/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted armor/storage.json -------------------------------------------------------------------------------- /items/enchanted/enchanted trinkets/enchanted_trinkets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted trinkets/enchanted_trinkets.json -------------------------------------------------------------------------------- /items/enchanted/enchanted trinkets/magic_trinkets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted trinkets/magic_trinkets.json -------------------------------------------------------------------------------- /items/enchanted/enchanted trinkets/miscellaneous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted trinkets/miscellaneous.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/ranged_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/ranged_plus1.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/ranged_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/ranged_plus2.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/ranged_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/ranged_plus3.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/ranged_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/ranged_plus4.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/ranged_plus5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/ranged_plus5.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/ranged_plus5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/ranged_plus5.txt -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/electric runes/electric_rune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/electric runes/electric_rune.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/electric runes/electric_rune_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/electric runes/electric_rune_plus1.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/electric runes/electric_rune_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/electric runes/electric_rune_plus2.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/electric runes/electric_rune_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/electric runes/electric_rune_plus3.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/electric runes/electric_rune_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/electric runes/electric_rune_plus4.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/flame runes/flame_rune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/flame runes/flame_rune.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/flame runes/flame_rune_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/flame runes/flame_rune_plus1.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/flame runes/flame_rune_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/flame runes/flame_rune_plus2.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/flame runes/flame_rune_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/flame runes/flame_rune_plus3.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/flame runes/flame_rune_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/flame runes/flame_rune_plus4.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/frost runes/weapons_frost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/frost runes/weapons_frost.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/frost runes/weapons_frost_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/frost runes/weapons_frost_plus1.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/frost runes/weapons_frost_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/frost runes/weapons_frost_plus2.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/frost runes/weapons_frost_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/frost runes/weapons_frost_plus3.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/frost runes/weapons_frost_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/frost runes/weapons_frost_plus4.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/runed weapons/weapon_rune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/runed weapons/weapon_rune.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/wands/druid.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/wands/staves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/wands/staves.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/wands/wands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/wands/wands.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/weapon_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/weapon_plus1.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/weapon_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/weapon_plus2.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/weapon_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/weapon_plus3.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/weapon_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/weapon_plus4.json -------------------------------------------------------------------------------- /items/enchanted/enchanted weapons/weapon_plus5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/enchanted weapons/weapon_plus5.json -------------------------------------------------------------------------------- /items/enchanted/occult/misc_magic_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/occult/misc_magic_items.json -------------------------------------------------------------------------------- /items/enchanted/occult/summoning_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/occult/summoning_items.json -------------------------------------------------------------------------------- /items/enchanted/occult/wands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/occult/wands.json -------------------------------------------------------------------------------- /items/enchanted/summoning_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/summoning_items.json -------------------------------------------------------------------------------- /items/enchanted/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/templates.json -------------------------------------------------------------------------------- /items/enchanted/trap_sigils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/enchanted/trap_sigils.json -------------------------------------------------------------------------------- /items/ethereal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/ethereal.json -------------------------------------------------------------------------------- /items/fake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/fake.json -------------------------------------------------------------------------------- /items/fluff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/fluff.json -------------------------------------------------------------------------------- /items/ink-related items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/ink-related items.json -------------------------------------------------------------------------------- /items/item_cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/item_cat.json -------------------------------------------------------------------------------- /items/maps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/maps.json -------------------------------------------------------------------------------- /items/materials/incense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/materials/incense.json -------------------------------------------------------------------------------- /items/materials/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/materials/ores.json -------------------------------------------------------------------------------- /items/materials/wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/materials/wood.json -------------------------------------------------------------------------------- /items/old and broken weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/old and broken weapons.json -------------------------------------------------------------------------------- /items/plants/plants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/plants/plants.json -------------------------------------------------------------------------------- /items/plants/seed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/plants/seed.json -------------------------------------------------------------------------------- /items/qualities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/qualities.json -------------------------------------------------------------------------------- /items/recipe_books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/recipe_books.json -------------------------------------------------------------------------------- /items/rune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/rune.json -------------------------------------------------------------------------------- /items/rune_matec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/rune_matec.json -------------------------------------------------------------------------------- /items/shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/shields.json -------------------------------------------------------------------------------- /items/tools/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/tools/tools.json -------------------------------------------------------------------------------- /items/torso_stroage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/torso_stroage.json -------------------------------------------------------------------------------- /items/trophies and patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/trophies and patches.json -------------------------------------------------------------------------------- /items/weapon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/items/weapon.json -------------------------------------------------------------------------------- /locations/bandit_camp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/bandit_camp.json -------------------------------------------------------------------------------- /locations/caves/crystal caverns/crystal_cave_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/crystal caverns/crystal_cave_base.json -------------------------------------------------------------------------------- /locations/caves/crystal caverns/crystal_cave_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/crystal caverns/crystal_cave_nested.json -------------------------------------------------------------------------------- /locations/caves/demon ruins/blank demon ruins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/demon ruins/blank demon ruins.json -------------------------------------------------------------------------------- /locations/caves/demon ruins/nested demon ruins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/demon ruins/nested demon ruins.json -------------------------------------------------------------------------------- /locations/caves/dwarven city/home rooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/dwarven city/home rooms.json -------------------------------------------------------------------------------- /locations/caves/dwarven city/subterranean administrative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/dwarven city/subterranean administrative.json -------------------------------------------------------------------------------- /locations/caves/dwarven city/subterranean homes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/dwarven city/subterranean homes.json -------------------------------------------------------------------------------- /locations/caves/enterances/cave_enter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/enterances/cave_enter.json -------------------------------------------------------------------------------- /locations/caves/flooded cave/flooded_cave_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/flooded cave/flooded_cave_base.json -------------------------------------------------------------------------------- /locations/caves/flooded cave/flooded_cave_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/flooded cave/flooded_cave_nested.json -------------------------------------------------------------------------------- /locations/caves/mushroom forest/mforest_blank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/mushroom forest/mforest_blank.json -------------------------------------------------------------------------------- /locations/caves/mushroom forest/mforest_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/mushroom forest/mforest_nested.json -------------------------------------------------------------------------------- /locations/caves/ruined citadel/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/ruined citadel/nested.json -------------------------------------------------------------------------------- /locations/caves/ruined citadel/ruined citadel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/ruined citadel/ruined citadel.json -------------------------------------------------------------------------------- /locations/caves/settlement ruins/nested buildings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/settlement ruins/nested buildings.json -------------------------------------------------------------------------------- /locations/caves/settlement ruins/roads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/settlement ruins/roads.json -------------------------------------------------------------------------------- /locations/caves/settlement ruins/ruined settlement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/settlement ruins/ruined settlement.json -------------------------------------------------------------------------------- /locations/caves/underground caves/cave_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/underground caves/cave_base.json -------------------------------------------------------------------------------- /locations/caves/underground caves/cave_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/underground caves/cave_nested.json -------------------------------------------------------------------------------- /locations/caves/underground swamp/uswamp_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/underground swamp/uswamp_base.json -------------------------------------------------------------------------------- /locations/caves/underground swamp/uswamp_blank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/underground swamp/uswamp_blank.json -------------------------------------------------------------------------------- /locations/caves/underground swamp/uswamp_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/caves/underground swamp/uswamp_nested.json -------------------------------------------------------------------------------- /locations/cults/demon_cult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/cults/demon_cult.json -------------------------------------------------------------------------------- /locations/cults/eldritch_cult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/cults/eldritch_cult.json -------------------------------------------------------------------------------- /locations/cults/hexbound_cult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/cults/hexbound_cult.json -------------------------------------------------------------------------------- /locations/dragon lair/dragon_lair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/dragon lair/dragon_lair.json -------------------------------------------------------------------------------- /locations/dragon lair/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/dragon lair/nested.json -------------------------------------------------------------------------------- /locations/druid_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/druid_circle.json -------------------------------------------------------------------------------- /locations/eldritch_cult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/eldritch_cult.json -------------------------------------------------------------------------------- /locations/farms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/farms.json -------------------------------------------------------------------------------- /locations/farms/farms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/farms/farms.json -------------------------------------------------------------------------------- /locations/farms/ranch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/farms/ranch.json -------------------------------------------------------------------------------- /locations/goblin camp/goblin_camp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/goblin camp/goblin_camp.json -------------------------------------------------------------------------------- /locations/goblin camp/rangen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/goblin camp/rangen.json -------------------------------------------------------------------------------- /locations/guild hall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/guild hall.json -------------------------------------------------------------------------------- /locations/hobgoblin camp/hobgoblin_camp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/hobgoblin camp/hobgoblin_camp.json -------------------------------------------------------------------------------- /locations/lake specials/kraken_lair.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /locations/lake specials/water_temple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/lake specials/water_temple.json -------------------------------------------------------------------------------- /locations/map extras/extra_ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/map extras/extra_ids.json -------------------------------------------------------------------------------- /locations/map extras/mapgen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/map extras/mapgen.json -------------------------------------------------------------------------------- /locations/mine/blank_shaft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/mine/blank_shaft.json -------------------------------------------------------------------------------- /locations/mine/mine_surface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/mine/mine_surface.json -------------------------------------------------------------------------------- /locations/mine/ore_veins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/mine/ore_veins.json -------------------------------------------------------------------------------- /locations/mineral_pond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/mineral_pond.json -------------------------------------------------------------------------------- /locations/mtc cathedral/mtc_cathedral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/mtc cathedral/mtc_cathedral.json -------------------------------------------------------------------------------- /locations/old_catacombs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/old_catacombs.json -------------------------------------------------------------------------------- /locations/palletes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/palletes.json -------------------------------------------------------------------------------- /locations/ruined city/city_ruins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/ruined city/city_ruins.json -------------------------------------------------------------------------------- /locations/ruined city/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/ruined city/nested.json -------------------------------------------------------------------------------- /locations/watchtower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/watchtower.json -------------------------------------------------------------------------------- /locations/waystation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/waystation.json -------------------------------------------------------------------------------- /locations/werebeast_lair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/werebeast_lair.json -------------------------------------------------------------------------------- /locations/wizard academy/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/wizard academy/nested.json -------------------------------------------------------------------------------- /locations/wizard academy/trial_maze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/wizard academy/trial_maze.json -------------------------------------------------------------------------------- /locations/wizard academy/wizard_academy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/wizard academy/wizard_academy.json -------------------------------------------------------------------------------- /locations/wizard_study.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/locations/wizard_study.json -------------------------------------------------------------------------------- /modinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/modinfo.json -------------------------------------------------------------------------------- /monsters/1-effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/1-effects.json -------------------------------------------------------------------------------- /monsters/2-fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/2-fields.json -------------------------------------------------------------------------------- /monsters/3-spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/3-spells.json -------------------------------------------------------------------------------- /monsters/Constructs/animated_objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Constructs/animated_objects.json -------------------------------------------------------------------------------- /monsters/Constructs/elementals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Constructs/elementals.json -------------------------------------------------------------------------------- /monsters/Constructs/golems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Constructs/golems.json -------------------------------------------------------------------------------- /monsters/Demons/mon_imp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Demons/mon_imp.json -------------------------------------------------------------------------------- /monsters/Demons/mon_shyleggah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Demons/mon_shyleggah.json -------------------------------------------------------------------------------- /monsters/Dragons/effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Dragons/effect.json -------------------------------------------------------------------------------- /monsters/Dragons/field.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Dragons/field.json -------------------------------------------------------------------------------- /monsters/Dragons/mons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Dragons/mons.json -------------------------------------------------------------------------------- /monsters/Dragons/spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Dragons/spells.json -------------------------------------------------------------------------------- /monsters/Undead/Ghosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Undead/Ghosts.json -------------------------------------------------------------------------------- /monsters/Undead/Skely.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Undead/Skely.json -------------------------------------------------------------------------------- /monsters/Undead/Zed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Undead/Zed.json -------------------------------------------------------------------------------- /monsters/Wildlife/fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Wildlife/fish.json -------------------------------------------------------------------------------- /monsters/Wildlife/gastropods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Wildlife/gastropods.json -------------------------------------------------------------------------------- /monsters/Wildlife/insects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/Wildlife/insects.json -------------------------------------------------------------------------------- /monsters/drops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/drops.json -------------------------------------------------------------------------------- /monsters/harvest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/harvest.json -------------------------------------------------------------------------------- /monsters/mon_bugbear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/mon_bugbear.json -------------------------------------------------------------------------------- /monsters/mon_hobgoblin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/mon_hobgoblin.json -------------------------------------------------------------------------------- /monsters/monammogun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/monammogun.json -------------------------------------------------------------------------------- /monsters/mons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/mons.json -------------------------------------------------------------------------------- /monsters/monstergroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/monstergroups.json -------------------------------------------------------------------------------- /monsters/speech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/speech.json -------------------------------------------------------------------------------- /monsters/werebeasts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/monsters/werebeasts.json -------------------------------------------------------------------------------- /mutations/item_mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/mutations/item_mutations.json -------------------------------------------------------------------------------- /mutations/mutagen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/mutations/mutagen.json -------------------------------------------------------------------------------- /mutations/recycled_mutations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/mutations/recycled_mutations.json -------------------------------------------------------------------------------- /mutations/the_blood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/mutations/the_blood.json -------------------------------------------------------------------------------- /npc stuff/NPC fantasy demographics patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/NPC fantasy demographics patch.json -------------------------------------------------------------------------------- /npc stuff/NPC worn and wield overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/NPC worn and wield overrides.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/BG_acolyte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/BG_acolyte.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/BG_anthropologist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/BG_anthropologist.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/BG_archaeologist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/BG_archaeologist.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/BG_charlatan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/BG_charlatan.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/BG_city_watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/BG_city_watch.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/BG_delta_farmer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/BG_delta_farmer.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/BG_dwarven_craftsman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/BG_dwarven_craftsman.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/BG_traits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/BG_traits.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/Backstory_trait_groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/Backstory_trait_groups.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/background_missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/background_missions.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/backgrounds_intro_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/backgrounds_intro_table.json -------------------------------------------------------------------------------- /npc stuff/backgrounds/player_backgrounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/backgrounds/player_backgrounds.json -------------------------------------------------------------------------------- /npc stuff/bandits/bandits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/bandits/bandits.json -------------------------------------------------------------------------------- /npc stuff/blacksmiths/blacksmith_missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/blacksmiths/blacksmith_missions.json -------------------------------------------------------------------------------- /npc stuff/blacksmiths/lone/TALK_NPC_LONE_BLACKSMITH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/blacksmiths/lone/TALK_NPC_LONE_BLACKSMITH.json -------------------------------------------------------------------------------- /npc stuff/blacksmiths/lone/lone blacksmith npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/blacksmiths/lone/lone blacksmith npc.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_CARRIAGE_MAKER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_CARRIAGE_MAKER.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_CHILD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_CHILD.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_DRY_DOCK_MANAGER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_DRY_DOCK_MANAGER.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_GAMBLER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_GAMBLER.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_INFIRMARY_HEAD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_INFIRMARY_HEAD.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_LOGGER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_LOGGER.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_NPC_GENERIC_CITIZEN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_NPC_GENERIC_CITIZEN.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_PRIEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_PRIEST.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_SHOPKEEPERS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_SHOPKEEPERS.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_STABLEMASTER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_STABLEMASTER.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_TELLER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_TELLER.json -------------------------------------------------------------------------------- /npc stuff/citizens/TALK_WORSHIPER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/TALK_WORSHIPER.json -------------------------------------------------------------------------------- /npc stuff/citizens/females/generic female citizen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/females/generic female citizen.json -------------------------------------------------------------------------------- /npc stuff/citizens/generic/npcs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/generic/npcs.json -------------------------------------------------------------------------------- /npc stuff/citizens/males/generic male citizen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/males/generic male citizen.json -------------------------------------------------------------------------------- /npc stuff/citizens/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/citizens/missions.json -------------------------------------------------------------------------------- /npc stuff/classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/classes.json -------------------------------------------------------------------------------- /npc stuff/combat/dragonslayers/TALK_NPC_RETIRED_DRAGONSLAYER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/dragonslayers/TALK_NPC_RETIRED_DRAGONSLAYER.json -------------------------------------------------------------------------------- /npc stuff/combat/dragonslayers/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/dragonslayers/missions.json -------------------------------------------------------------------------------- /npc stuff/combat/dragonslayers/retired dragonslayer npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/dragonslayers/retired dragonslayer npc.json -------------------------------------------------------------------------------- /npc stuff/combat/knights/TALK_NPC_STATIONED_KNIGHT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/knights/TALK_NPC_STATIONED_KNIGHT.json -------------------------------------------------------------------------------- /npc stuff/combat/knights/stationed knight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/knights/stationed knight.json -------------------------------------------------------------------------------- /npc stuff/combat/mercenaries/TALK_MERCENARY_FRIENDLY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/mercenaries/TALK_MERCENARY_FRIENDLY.json -------------------------------------------------------------------------------- /npc stuff/combat/mercenaries/mercenaries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/mercenaries/mercenaries.json -------------------------------------------------------------------------------- /npc stuff/combat/rogues/TALK_NPC_GAMBLING_ROGUE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/rogues/TALK_NPC_GAMBLING_ROGUE.json -------------------------------------------------------------------------------- /npc stuff/combat/rogues/TALK_NPC_NAUGHTY_ROGUE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/rogues/TALK_NPC_NAUGHTY_ROGUE.json -------------------------------------------------------------------------------- /npc stuff/combat/rogues/gambling rogue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/rogues/gambling rogue.json -------------------------------------------------------------------------------- /npc stuff/combat/rogues/naughty rogue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/combat/rogues/naughty rogue.json -------------------------------------------------------------------------------- /npc stuff/cultists/MISSION_OFFER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/MISSION_OFFER.json -------------------------------------------------------------------------------- /npc stuff/cultists/TALK_CULT_PROSPECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/TALK_CULT_PROSPECT.json -------------------------------------------------------------------------------- /npc stuff/cultists/cultists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/cultists.json -------------------------------------------------------------------------------- /npc stuff/cultists/elder cultists/TALK_CAPTAIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/elder cultists/TALK_CAPTAIN.json -------------------------------------------------------------------------------- /npc stuff/cultists/elder cultists/TALK_DEFENDER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/elder cultists/TALK_DEFENDER.json -------------------------------------------------------------------------------- /npc stuff/cultists/elder cultists/TALK_ELDER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/elder cultists/TALK_ELDER.json -------------------------------------------------------------------------------- /npc stuff/cultists/elder cultists/TALK_HOMAGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/elder cultists/TALK_HOMAGE.json -------------------------------------------------------------------------------- /npc stuff/cultists/elder cultists/TALK_LOREVESSEL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/elder cultists/TALK_LOREVESSEL.json -------------------------------------------------------------------------------- /npc stuff/cultists/elder cultists/TALK_MEMBER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/elder cultists/TALK_MEMBER.json -------------------------------------------------------------------------------- /npc stuff/cultists/elder cultists/TALK_ONOCTI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/elder cultists/TALK_ONOCTI.json -------------------------------------------------------------------------------- /npc stuff/cultists/elder cultists/TALK_RECRUITER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/elder cultists/TALK_RECRUITER.json -------------------------------------------------------------------------------- /npc stuff/cultists/elder cultists/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/elder cultists/missions.json -------------------------------------------------------------------------------- /npc stuff/cultists/fiend cultists/TALK_FIEND_LEADER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/fiend cultists/TALK_FIEND_LEADER.json -------------------------------------------------------------------------------- /npc stuff/cultists/fiend cultists/TALK_FIEND_MAGICIAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/fiend cultists/TALK_FIEND_MAGICIAN.json -------------------------------------------------------------------------------- /npc stuff/cultists/fiend cultists/TALK_FIEND_SACRIFICER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/fiend cultists/TALK_FIEND_SACRIFICER.json -------------------------------------------------------------------------------- /npc stuff/cultists/fiend cultists/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/cultists/fiend cultists/missions.json -------------------------------------------------------------------------------- /npc stuff/erotic/dancers/TALK_NPC_EXCITED_DANCER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/erotic/dancers/TALK_NPC_EXCITED_DANCER.json -------------------------------------------------------------------------------- /npc stuff/erotic/dancers/TALK_NPC_NERVOUS_DANCER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/erotic/dancers/TALK_NPC_NERVOUS_DANCER.json -------------------------------------------------------------------------------- /npc stuff/erotic/dancers/TALK_NPC_TEASING_DANCER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/erotic/dancers/TALK_NPC_TEASING_DANCER.json -------------------------------------------------------------------------------- /npc stuff/erotic/dancers/excited dancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/erotic/dancers/excited dancer.json -------------------------------------------------------------------------------- /npc stuff/erotic/dancers/nervous dancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/erotic/dancers/nervous dancer.json -------------------------------------------------------------------------------- /npc stuff/erotic/dancers/teasing dancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/erotic/dancers/teasing dancer.json -------------------------------------------------------------------------------- /npc stuff/factions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/factions.json -------------------------------------------------------------------------------- /npc stuff/generic_missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/generic_missions.json -------------------------------------------------------------------------------- /npc stuff/guards/TALK_NPC_BOUNCER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guards/TALK_NPC_BOUNCER.json -------------------------------------------------------------------------------- /npc stuff/guards/TALK_NPC_CITY_GUARD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guards/TALK_NPC_CITY_GUARD.json -------------------------------------------------------------------------------- /npc stuff/guards/TALK_NPC_DRUNK_GUARD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guards/TALK_NPC_DRUNK_GUARD.json -------------------------------------------------------------------------------- /npc stuff/guards/TALK_NPC_GUARD_CAPTAIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guards/TALK_NPC_GUARD_CAPTAIN.json -------------------------------------------------------------------------------- /npc stuff/guards/TALK_NPC_HORSE_GUARD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guards/TALK_NPC_HORSE_GUARD.json -------------------------------------------------------------------------------- /npc stuff/guards/bouncer npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guards/bouncer npc.json -------------------------------------------------------------------------------- /npc stuff/guards/city guard npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guards/city guard npc.json -------------------------------------------------------------------------------- /npc stuff/guards/drunk city guard npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guards/drunk city guard npc.json -------------------------------------------------------------------------------- /npc stuff/guards/horse guard npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guards/horse guard npc.json -------------------------------------------------------------------------------- /npc stuff/guards/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guards/missions.json -------------------------------------------------------------------------------- /npc stuff/guild masters/TALK_GUILD_MASTER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guild masters/TALK_GUILD_MASTER.json -------------------------------------------------------------------------------- /npc stuff/guild masters/guild masters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guild masters/guild masters.json -------------------------------------------------------------------------------- /npc stuff/guild masters/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/guild masters/missions.json -------------------------------------------------------------------------------- /npc stuff/menial and common/farmers/NPC_FARMERS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/farmers/NPC_FARMERS.json -------------------------------------------------------------------------------- /npc stuff/menial and common/farmers/TALK_FARMERS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/farmers/TALK_FARMERS.json -------------------------------------------------------------------------------- /npc stuff/menial and common/farmers/TALK_FARMHAND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/farmers/TALK_FARMHAND.json -------------------------------------------------------------------------------- /npc stuff/menial and common/farmers/TALK_RANCHAND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/farmers/TALK_RANCHAND.json -------------------------------------------------------------------------------- /npc stuff/menial and common/farmers/TALK_RANCHERS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/farmers/TALK_RANCHERS.json -------------------------------------------------------------------------------- /npc stuff/menial and common/farmers/farmers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/farmers/farmers.json -------------------------------------------------------------------------------- /npc stuff/menial and common/farmers/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/farmers/missions.json -------------------------------------------------------------------------------- /npc stuff/menial and common/fishers/TALK_NPC_GENERIC_FISHER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/fishers/TALK_NPC_GENERIC_FISHER.json -------------------------------------------------------------------------------- /npc stuff/menial and common/fishers/generic fisher npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/fishers/generic fisher npc.json -------------------------------------------------------------------------------- /npc stuff/menial and common/fishers/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/fishers/missions.json -------------------------------------------------------------------------------- /npc stuff/menial and common/kitchenstaff/TALK_NPC_GENERIC_KITCHEN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/kitchenstaff/TALK_NPC_GENERIC_KITCHEN.json -------------------------------------------------------------------------------- /npc stuff/menial and common/kitchenstaff/generic kitchen npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/kitchenstaff/generic kitchen npc.json -------------------------------------------------------------------------------- /npc stuff/menial and common/maids/TALK_NPC_GENERIC_MAID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/maids/TALK_NPC_GENERIC_MAID.json -------------------------------------------------------------------------------- /npc stuff/menial and common/maids/generic maid npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/maids/generic maid npc.json -------------------------------------------------------------------------------- /npc stuff/menial and common/miners/TALK_MINE_BOSS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/miners/TALK_MINE_BOSS.json -------------------------------------------------------------------------------- /npc stuff/menial and common/miners/miners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/miners/miners.json -------------------------------------------------------------------------------- /npc stuff/menial and common/stall vendors/NPC_STALL_VENDORS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/stall vendors/NPC_STALL_VENDORS.json -------------------------------------------------------------------------------- /npc stuff/menial and common/stall vendors/generic_stall_vendors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/stall vendors/generic_stall_vendors.json -------------------------------------------------------------------------------- /npc stuff/menial and common/wenches/TALK_NPC_GENERIC_WENCH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/wenches/TALK_NPC_GENERIC_WENCH.json -------------------------------------------------------------------------------- /npc stuff/menial and common/wenches/generic wench npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/menial and common/wenches/generic wench npc.json -------------------------------------------------------------------------------- /npc stuff/religious/TALK_ACOLYTE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/religious/TALK_ACOLYTE.json -------------------------------------------------------------------------------- /npc stuff/religious/TALK_CLERIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/religious/TALK_CLERIC.json -------------------------------------------------------------------------------- /npc stuff/religious/TALK_HOLY_SCROLLKEEPER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/religious/TALK_HOLY_SCROLLKEEPER.json -------------------------------------------------------------------------------- /npc stuff/religious/acolytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/religious/acolytes.json -------------------------------------------------------------------------------- /npc stuff/religious/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/religious/missions.json -------------------------------------------------------------------------------- /npc stuff/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/snippets.json -------------------------------------------------------------------------------- /npc stuff/tavernkeeps/generic/TALK_NPC_GENERIC_TAVERNKEEP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/tavernkeeps/generic/TALK_NPC_GENERIC_TAVERNKEEP.json -------------------------------------------------------------------------------- /npc stuff/tavernkeeps/generic/generic tavernkeep npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/tavernkeeps/generic/generic tavernkeep npc.json -------------------------------------------------------------------------------- /npc stuff/tavernkeeps/generic/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/tavernkeeps/generic/missions.json -------------------------------------------------------------------------------- /npc stuff/wizards/TALK_APPRENTICE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/TALK_APPRENTICE.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_ACADEMY_APPRENTICE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_ACADEMY_APPRENTICE.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_ACADEMY_INFUSIONIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_ACADEMY_INFUSIONIST.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_ACADEMY_LIBRARIAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_ACADEMY_LIBRARIAN.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_ACADEMY_TATOO_ARTIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_ACADEMY_TATOO_ARTIST.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_ALCHEMY_INSTRUCTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_ALCHEMY_INSTRUCTOR.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_DEAN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_DEAN.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_FIRST_YEAR_INSTRUCTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_FIRST_YEAR_INSTRUCTOR.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_FOURTH_YEAR_INSTRUCTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_FOURTH_YEAR_INSTRUCTOR.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_INFUSION_INSTRUCTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_INFUSION_INSTRUCTOR.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_RECEPTIONIST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_RECEPTIONIST.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_SECOND_YEAR_INSTRUCTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_SECOND_YEAR_INSTRUCTOR.json -------------------------------------------------------------------------------- /npc stuff/wizards/academy/TALK_THIRD_YEAR_INSTRUCTOR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/academy/TALK_THIRD_YEAR_INSTRUCTOR.json -------------------------------------------------------------------------------- /npc stuff/wizards/apprentices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/apprentices.json -------------------------------------------------------------------------------- /npc stuff/wizards/druids/TALK_DRUID_MASTER.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/druids/TALK_DRUID_MASTER.json -------------------------------------------------------------------------------- /npc stuff/wizards/druids/druids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/druids/druids.json -------------------------------------------------------------------------------- /npc stuff/wizards/druids/missions.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /npc stuff/wizards/mage_snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/mage_snippets.json -------------------------------------------------------------------------------- /npc stuff/wizards/missions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/npc stuff/wizards/missions.json -------------------------------------------------------------------------------- /overmaps/overmap_special.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/overmaps/overmap_special.json -------------------------------------------------------------------------------- /overmaps/overmap_terrain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/overmaps/overmap_terrain.json -------------------------------------------------------------------------------- /recipies/chemicals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/chemicals.json -------------------------------------------------------------------------------- /recipies/cult/armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/cult/armor.json -------------------------------------------------------------------------------- /recipies/cult/spellbooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/cult/spellbooks.json -------------------------------------------------------------------------------- /recipies/deconstruct/deconstruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/deconstruct/deconstruct.json -------------------------------------------------------------------------------- /recipies/deconstruct/magic weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/deconstruct/magic weapons.json -------------------------------------------------------------------------------- /recipies/magic items/armor/armor_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/armor/armor_plus1.json -------------------------------------------------------------------------------- /recipies/magic items/armor/divine/amulets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/armor/divine/amulets.json -------------------------------------------------------------------------------- /recipies/magic items/armor/tatoos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/armor/tatoos.json -------------------------------------------------------------------------------- /recipies/magic items/armor_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/armor_plus1.json -------------------------------------------------------------------------------- /recipies/magic items/divine/amulets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/divine/amulets.json -------------------------------------------------------------------------------- /recipies/magic items/divine/divine_weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/divine/divine_weapons.json -------------------------------------------------------------------------------- /recipies/magic items/divine/divine_weapons_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/divine/divine_weapons_plus1.json -------------------------------------------------------------------------------- /recipies/magic items/divine/divine_weapons_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/divine/divine_weapons_plus2.json -------------------------------------------------------------------------------- /recipies/magic items/divine/divine_weapons_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/divine/divine_weapons_plus3.json -------------------------------------------------------------------------------- /recipies/magic items/divine/divine_weapons_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/divine/divine_weapons_plus4.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/electric/electric_rune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/electric/electric_rune.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/electric/electric_rune_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/electric/electric_rune_plus1.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/electric/electric_rune_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/electric/electric_rune_plus2.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/electric/electric_rune_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/electric/electric_rune_plus3.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/electric/electric_rune_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/electric/electric_rune_plus4.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/flame/flame_rune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/flame/flame_rune.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/flame/flame_rune_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/flame/flame_rune_plus1.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/flame/flame_rune_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/flame/flame_rune_plus2.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/flame/flame_rune_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/flame/flame_rune_plus3.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/flame/flame_rune_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/flame/flame_rune_plus4.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/frost/ice_rune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/frost/ice_rune.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/frost/ice_rune_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/frost/ice_rune_plus1.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/frost/ice_rune_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/frost/ice_rune_plus2.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/frost/ice_rune_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/frost/ice_rune_plus3.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/frost/ice_rune_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/frost/ice_rune_plus4.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/weapon_plus1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/weapon_plus1.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/weapon_plus2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/weapon_plus2.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/weapon_plus3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/weapon_plus3.json -------------------------------------------------------------------------------- /recipies/magic items/enchanted weapons/weapon_plus4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/enchanted weapons/weapon_plus4.json -------------------------------------------------------------------------------- /recipies/magic items/magic_chemicals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/magic_chemicals.json -------------------------------------------------------------------------------- /recipies/magic items/magic_tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/magic_tools.json -------------------------------------------------------------------------------- /recipies/magic items/materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/materials.json -------------------------------------------------------------------------------- /recipies/magic items/misc/enchanted_trinkets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/misc/enchanted_trinkets.json -------------------------------------------------------------------------------- /recipies/magic items/misc/materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/misc/materials.json -------------------------------------------------------------------------------- /recipies/magic items/potions/concentrated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/potions/concentrated.json -------------------------------------------------------------------------------- /recipies/magic items/potions/potions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/potions/potions.json -------------------------------------------------------------------------------- /recipies/magic items/summoning_objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/summoning_objects.json -------------------------------------------------------------------------------- /recipies/magic items/traps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/traps.json -------------------------------------------------------------------------------- /recipies/magic items/wands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/magic items/wands.json -------------------------------------------------------------------------------- /recipies/metals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/metals.json -------------------------------------------------------------------------------- /recipies/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/misc.json -------------------------------------------------------------------------------- /recipies/proficiencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/proficiencies.json -------------------------------------------------------------------------------- /recipies/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/tools.json -------------------------------------------------------------------------------- /recipies/weapons, armor, and ammo/shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/weapons, armor, and ammo/shields.json -------------------------------------------------------------------------------- /recipies/weapons, armor, and ammo/weapons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/recipies/weapons, armor, and ammo/weapons.json -------------------------------------------------------------------------------- /regional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/regional.json -------------------------------------------------------------------------------- /requirements/alchemy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/requirements/alchemy.json -------------------------------------------------------------------------------- /requirements/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/requirements/magic.json -------------------------------------------------------------------------------- /skills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/skills.json -------------------------------------------------------------------------------- /snippets/epilouges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/snippets/epilouges.json -------------------------------------------------------------------------------- /snippets/personal epilouges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/snippets/personal epilouges.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/cleric scrolls/cleric_cantrips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/cleric scrolls/cleric_cantrips.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/cleric scrolls/life_scrolls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/cleric scrolls/life_scrolls.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/cleric scrolls/light_scrolls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/cleric scrolls/light_scrolls.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/cleric scrolls/twighlight_scrolls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/cleric scrolls/twighlight_scrolls.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/cleric scrolls/war_scrolls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/cleric scrolls/war_scrolls.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/druid scrolls/druid_scrolls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/druid scrolls/druid_scrolls.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/mage scrolls/mage_scrolls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/mage scrolls/mage_scrolls.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/warlock scrolls/eldritch_scrolls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/warlock scrolls/eldritch_scrolls.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/warlock scrolls/fiend_scrolls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/warlock scrolls/fiend_scrolls.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/warlock scrolls/hexbound_scrolls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/warlock scrolls/hexbound_scrolls.json -------------------------------------------------------------------------------- /spellbooks/spell scrolls/warlock scrolls/warlock_cantrips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spell scrolls/warlock scrolls/warlock_cantrips.json -------------------------------------------------------------------------------- /spellbooks/spellbooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spellbooks/spellbooks.json -------------------------------------------------------------------------------- /spells_effects_misc/classes/clerics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/classes/clerics.json -------------------------------------------------------------------------------- /spells_effects_misc/classes/druids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/classes/druids.json -------------------------------------------------------------------------------- /spells_effects_misc/classes/warlocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/classes/warlocks.json -------------------------------------------------------------------------------- /spells_effects_misc/classes/wizards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/classes/wizards.json -------------------------------------------------------------------------------- /spells_effects_misc/cleric/cleric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/cleric/cleric.json -------------------------------------------------------------------------------- /spells_effects_misc/cleric/life/life_domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/cleric/life/life_domain.json -------------------------------------------------------------------------------- /spells_effects_misc/cleric/light/light_domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/cleric/light/light_domain.json -------------------------------------------------------------------------------- /spells_effects_misc/cleric/twighlight/twighight_domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/cleric/twighlight/twighight_domain.json -------------------------------------------------------------------------------- /spells_effects_misc/cleric/war/animated weapons/weapon_effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/cleric/war/animated weapons/weapon_effect.json -------------------------------------------------------------------------------- /spells_effects_misc/cleric/war/war_domain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/cleric/war/war_domain.json -------------------------------------------------------------------------------- /spells_effects_misc/druid/druid_spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/druid/druid_spells.json -------------------------------------------------------------------------------- /spells_effects_misc/effects_misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/effects_misc.json -------------------------------------------------------------------------------- /spells_effects_misc/items/item_effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/items/item_effects.json -------------------------------------------------------------------------------- /spells_effects_misc/items/potion_effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/items/potion_effects.json -------------------------------------------------------------------------------- /spells_effects_misc/items/regen_effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/items/regen_effects.json -------------------------------------------------------------------------------- /spells_effects_misc/items/sigil_effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/items/sigil_effects.json -------------------------------------------------------------------------------- /spells_effects_misc/items/summoning_effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/items/summoning_effects.json -------------------------------------------------------------------------------- /spells_effects_misc/mage/mage_spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/mage/mage_spells.json -------------------------------------------------------------------------------- /spells_effects_misc/mage/spell effects/elemental_effect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/mage/spell effects/elemental_effect.json -------------------------------------------------------------------------------- /spells_effects_misc/mage/spell effects/raise_dead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/mage/spell effects/raise_dead.json -------------------------------------------------------------------------------- /spells_effects_misc/spells_misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/spells_misc.json -------------------------------------------------------------------------------- /spells_effects_misc/warlock/eldritch/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/warlock/eldritch/components.json -------------------------------------------------------------------------------- /spells_effects_misc/warlock/eldritch/cult_spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/warlock/eldritch/cult_spells.json -------------------------------------------------------------------------------- /spells_effects_misc/warlock/eldritch/curses/curses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/warlock/eldritch/curses/curses.json -------------------------------------------------------------------------------- /spells_effects_misc/warlock/eldritch/eldritch commune/commune_effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/warlock/eldritch/eldritch commune/commune_effects.json -------------------------------------------------------------------------------- /spells_effects_misc/warlock/eldritch/eldritch commune/commune_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/warlock/eldritch/eldritch commune/commune_items.json -------------------------------------------------------------------------------- /spells_effects_misc/warlock/fiend/fiend_spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/warlock/fiend/fiend_spells.json -------------------------------------------------------------------------------- /spells_effects_misc/warlock/fiend/summon_demons/spawn_effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/warlock/fiend/summon_demons/spawn_effects.json -------------------------------------------------------------------------------- /spells_effects_misc/warlock/hexbound/hexbound_spells.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/warlock/hexbound/hexbound_spells.json -------------------------------------------------------------------------------- /spells_effects_misc/warlock/warlock_cantrips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/spells_effects_misc/warlock/warlock_cantrips.json -------------------------------------------------------------------------------- /starts, scenarios, and professions/scenario and races.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/starts, scenarios, and professions/scenario and races.json -------------------------------------------------------------------------------- /starts, scenarios, and professions/start locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/starts, scenarios, and professions/start locations.json -------------------------------------------------------------------------------- /traps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/traps.json -------------------------------------------------------------------------------- /vehicles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foulman/Fantasy/HEAD/vehicles.json --------------------------------------------------------------------------------