├── .gitignore ├── LICENSE ├── README.md ├── backend ├── .gitignore ├── Database │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── Dockerfile.prod ├── auth │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── serializers.py │ └── views.py ├── blog │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20210208_2034.py │ │ ├── 0003_auto_20210208_2043.py │ │ ├── 0004_auto_20210208_2044.py │ │ ├── 0005_section_fullname.py │ │ ├── 0006_auto_20210326_1327.py │ │ ├── 0007_tags_slugname.py │ │ ├── 0008_auto_20210328_1607.py │ │ ├── 0009_blog_closed_comment.py │ │ ├── 0010_alter_comment_blog.py │ │ ├── 0011_alter_comment_name.py │ │ ├── 0012_rename_slugtitle_blog_slug_rename_slugname_tags_slug_and_more.py │ │ ├── 0013_rename_description_blog_desc.py │ │ ├── 0014_alter_section_fullname.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ └── viewsets.py ├── fixtures │ ├── a12_data.json.gz │ ├── a15_data.json.gz │ ├── a16_data.json.gz │ ├── a18_data.json.gz │ ├── a22_data.json.gz │ ├── a23_data.json.gz │ ├── a25_data.json.gz │ ├── a26_data.json.gz │ ├── br1_data.json.gz │ ├── brsl_data.json.gz │ └── navigation.json.gz ├── games │ ├── A12 │ │ ├── areadata_a12 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── categories_a12 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_rename_slugname_category_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── effects_a12 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_effect_options.py │ │ │ │ ├── 0003_rename_slugname_effect_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── items_a12 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20210609_0025.py │ │ │ │ ├── 0003_auto_20210609_0051.py │ │ │ │ ├── 0004_auto_20210609_0149.py │ │ │ │ ├── 0005_auto_20210609_0227.py │ │ │ │ ├── 0006_auto_20210609_0229.py │ │ │ │ ├── 0007_auto_20210609_0230.py │ │ │ │ ├── 0008_rename_slugname_book_slug_rename_slugname_item_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── monsters_a12 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_monster_options.py │ │ │ │ ├── 0003_rename_slugname_monster_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── regions_a12 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_region_parent.py │ │ │ │ ├── 0003_rename_slugname_region_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── serializers.py │ │ ├── traits_a12 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_trait_options.py │ │ │ │ ├── 0003_rename_slugname_trait_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ └── urls.py │ ├── A15 │ │ ├── categories_a15 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_category_icon_name.py │ │ │ │ ├── 0003_rename_slugname_category_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── effects_a15 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20210605_2210.py │ │ │ │ ├── 0003_alter_effect_options.py │ │ │ │ ├── 0004_rename_slugname_effect_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── items_a15 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_equip_mp.py │ │ │ │ ├── 0003_auto_20210606_1556.py │ │ │ │ ├── 0004_areadata.py │ │ │ │ ├── 0005_auto_20210606_1703.py │ │ │ │ ├── 0006_disassembly.py │ │ │ │ ├── 0007_auto_20210607_1410.py │ │ │ │ ├── 0008_auto_20210607_1412.py │ │ │ │ ├── 0009_auto_20210607_1413.py │ │ │ │ ├── 0010_disassembled.py │ │ │ │ ├── 0011_regiondata.py │ │ │ │ ├── 0012_relic_regiondata.py │ │ │ │ ├── 0013_regiondata_strong.py │ │ │ │ ├── 0014_rename_slugname_book_slug_rename_slugname_item_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── monsters_a15 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_monster_locations.py │ │ │ │ ├── 0003_alter_monster_options.py │ │ │ │ ├── 0004_rename_slugname_monster_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── properties_a15 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20210604_2105.py │ │ │ │ ├── 0003_auto_20210604_2115.py │ │ │ │ ├── 0004_auto_20210604_2130.py │ │ │ │ ├── 0005_alter_property_options.py │ │ │ │ ├── 0006_rename_slugname_property_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── regions_a15 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_fieldevent.py │ │ │ │ ├── 0003_rename_slugname_region_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── serializers.py │ │ └── urls.py │ ├── A16 │ │ ├── areadata_a16 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── categories_a16 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_rename_slugname_category_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── effects_a16 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_effect_options.py │ │ │ │ ├── 0003_rename_slugname_effect_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── items_a16 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_effectdata_effectlines.py │ │ │ │ ├── 0003_auto_20210611_0137.py │ │ │ │ ├── 0004_rename_slugname_book_slug_rename_slugname_item_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── monsters_a16 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_monster_options.py │ │ │ │ ├── 0003_rename_slugname_monster_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── properties_a16 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_property_options.py │ │ │ │ ├── 0003_rename_slugname_property_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── regions_a16 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_rename_slugname_region_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── serializers.py │ │ └── urls.py │ ├── A18 │ │ ├── effects_traits_a18 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_remove_advdata_baseatt.py │ │ │ │ ├── 0003_trait_advanced.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── items_a18 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_remove_item_char1_remove_item_char2_and_more.py │ │ │ │ ├── 0003_item_chars_delete_characterequip.py │ │ │ │ ├── 0004_catalyst_size.py │ │ │ │ ├── 0005_alter_catalyst_action1_alter_catalyst_action2_and_more.py │ │ │ │ ├── 0006_item_char1_item_char2_item_char3_item_char4.py │ │ │ │ ├── 0007_shopslot_book.py │ │ │ │ ├── 0008_alter_shopslot_item_alter_shopslot_shop.py │ │ │ │ ├── 0009_ingredient_effectlines_effectdata.py │ │ │ │ ├── 0010_masteryline.py │ │ │ │ ├── 0011_catalyst_used_by.py │ │ │ │ ├── 0012_remove_catalyst_used_by_item_catalysts.py │ │ │ │ ├── 0013_recipeidea_item_recipe_points_recipeunlock_and_more.py │ │ │ │ ├── 0014_recipecondition_category_recipecondition_item_and_more.py │ │ │ │ ├── 0015_item_locations_item_monsters.py │ │ │ │ ├── 0016_item_recipes_alter_book_recipes.py │ │ │ │ ├── 0017_item_book_alter_book_book.py │ │ │ │ ├── 0018_remove_item_recipes_delete_book.py │ │ │ │ ├── 0019_alter_item_book.py │ │ │ │ ├── 0020_rename_item_en_item_text_remove_item_item_ja_and_more.py │ │ │ │ ├── 0021_recipecondition_condition_sc_and_more.py │ │ │ │ ├── 0022_alter_catalyst_item.py │ │ │ │ ├── 0023_remove_catalyst_item.py │ │ │ │ ├── 0024_remove_catalyst_action1_remove_catalyst_action2_and_more.py │ │ │ │ ├── 0025_delete_catalyst.py │ │ │ │ ├── 0026_catalyst.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── misc_a18 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_basictext.py │ │ │ │ ├── 0003_basictext_char1_basictext_char2_basictext_char3_and_more.py │ │ │ │ ├── 0004_remove_basictext_char1_remove_basictext_char2_and_more.py │ │ │ │ ├── 0005_itemmastery.py │ │ │ │ ├── 0006_areaname.py │ │ │ │ ├── 0007_alter_areaname_name_en_alter_areaname_slug.py │ │ │ │ ├── 0008_basictext_desc1_ja_basictext_desc1_sc_and_more.py │ │ │ │ ├── 0009_rename_desc1_basictext_desc1_en_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── monsters_a18 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_monster_slug.py │ │ │ │ ├── 0003_race.py │ │ │ │ ├── 0004_alter_monster_options_monster_atk_monster_cole_and_more.py │ │ │ │ ├── 0005_monster_ail_monster_fire_monster_ice_monster_impact_and_more.py │ │ │ │ ├── 0006_monster_isdx.py │ │ │ │ ├── 0007_rename_mon_en_monster_text_remove_monster_mon_ja_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── test_a18.py │ │ └── urls.py │ ├── A21 │ │ ├── effects_traits_a21 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_effect_child_effect_forge.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── items_a21 │ │ │ ├── apps.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ └── urls.py │ ├── A22 │ │ ├── __init__.py │ │ ├── categories_a22 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_rename_slugname_category_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── effects_a22 │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20210412_0547.py │ │ │ │ ├── 0003_auto_20210412_0555.py │ │ │ │ ├── 0004_auto_20210829_2330.py │ │ │ │ ├── 0005_alter_effect_options.py │ │ │ │ ├── 0006_alter_effect_efftype.py │ │ │ │ ├── 0007_alter_effect_effects_alter_effect_parent.py │ │ │ │ ├── 0008_rename_slugname_effect_slug.py │ │ │ │ ├── 0009_rename_description_effect_en_desc_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── items_a22 │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20210413_0546.py │ │ │ │ ├── 0003_ingeffects_noneffect.py │ │ │ │ ├── 0004_itemlocations.py │ │ │ │ ├── 0005_auto_20210414_1055.py │ │ │ │ ├── 0006_auto_20210502_0401.py │ │ │ │ ├── 0007_auto_20210502_0417.py │ │ │ │ ├── 0008_itemareas.py │ │ │ │ ├── 0009_auto_20210502_0534.py │ │ │ │ ├── 0010_auto_20210502_0613.py │ │ │ │ ├── 0011_auto_20210502_0627.py │ │ │ │ ├── 0012_auto_20210502_0758.py │ │ │ │ ├── 0013_auto_20210508_0729.py │ │ │ │ ├── 0014_alter_item_options.py │ │ │ │ ├── 0015_rename_slugname_item_slug.py │ │ │ │ ├── 0016_rename_description_item_en_desc_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── locations_a22 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_location_region.py │ │ │ │ ├── 0003_location_isdlc.py │ │ │ │ ├── 0004_rename_slugname_location_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── serializers.py │ │ ├── monsters_a22 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_monster_options.py │ │ │ │ ├── 0003_rename_slugname_monster_slug.py │ │ │ │ ├── 0004_rename_description_monster_en_desc_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── shops_a22 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_rename_slugname_shop_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── serializers.py │ │ ├── traits_a22 │ │ │ ├── __init__.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_trait_options.py │ │ │ │ ├── 0003_rename_slugname_trait_slug.py │ │ │ │ ├── 0004_rename_description_trait_en_desc_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ └── urls.py │ ├── A23 │ │ ├── effects_a23 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_rename_description_effect_en_desc_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── items_a23 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_rename_slugname_book_slug_rename_slugname_item_slug.py │ │ │ │ ├── 0003_alter_effectlines_elem_alter_item_item_en_and_more.py │ │ │ │ ├── 0004_remove_book_item_en_remove_book_item_ja_and_more.py │ │ │ │ ├── 0005_alter_book_book_en_alter_book_book_ja_and_more.py │ │ │ │ ├── 0006_alter_item_item_en_alter_item_item_ja_and_more.py │ │ │ │ ├── 0007_remove_book_chest_remove_item_chest.py │ │ │ │ ├── 0008_characterequip_it_equip_it_alter_characterequip_item_and_more.py │ │ │ │ ├── 0009_remove_characterequip_item_remove_equip_item.py │ │ │ │ ├── 0010_remove_effectlines_effects_book_note_effectdata_line.py │ │ │ │ ├── 0011_item_char_item_quantity_item_range_item_uses_item_wt_and_more.py │ │ │ │ ├── 0012_component_ingredient_cat_item_maxlv_item_restrict_and_more.py │ │ │ │ ├── 0013_rename_ing_ingredient_synth_remove_item_maxlv_and_more.py │ │ │ │ ├── 0014_remove_effectdata_elem.py │ │ │ │ ├── 0015_recipetext_recipeidea.py │ │ │ │ ├── 0016_recipeidea_char.py │ │ │ │ ├── 0017_rename_text_recipetext_text_en_recipetext_text_ja_and_more.py │ │ │ │ ├── 0018_alter_recipeidea_options.py │ │ │ │ ├── 0019_item_add.py │ │ │ │ ├── 0020_book_isdlc_item_from_seed_item_isdlc_seed.py │ │ │ │ ├── 0021_alter_item_from_seed.py │ │ │ │ ├── 0022_delete_seed.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── misc_a23 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_character_char_en_alter_character_char_ja_and_more.py │ │ │ │ ├── 0003_alter_character_char_en_alter_character_char_ja_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── serializers.py │ │ ├── monsters_a23 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_monster_char1_monster_char2_monster_char3_and_more.py │ │ │ │ ├── 0003_alter_monster_mon_en_alter_monster_mon_ja_and_more.py │ │ │ │ ├── 0004_alter_monster_resist_fire_alter_monster_resist_ice_and_more.py │ │ │ │ ├── 0005_alter_monster_location.py │ │ │ │ ├── 0006_remove_monster_location.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── regions_a23 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_gatheritem_gathernode_climate_chest.py │ │ │ │ ├── 0003_alter_gathernode_options.py │ │ │ │ ├── 0004_climate2_region2_gathernode2_gatheritem2_and_more.py │ │ │ │ ├── 0005_region2_parent.py │ │ │ │ ├── 0006_remove_climate_loc_remove_climate_node_and_more.py │ │ │ │ ├── 0007_climate2_mons.py │ │ │ │ ├── 0008_gathernode2_major.py │ │ │ │ ├── 0009_alter_gathernode2_options_alter_gathernode2_major_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── traits_a23 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ └── urls.py │ ├── A25 │ │ ├── chara_a25 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_remove_character_gacha_char_character_slug_and_more.py │ │ │ │ ├── 0003_alter_skill_options_skill_index_alter_skill_val2.py │ │ │ │ ├── 0004_remove_character_rate_hp_remove_character_rate_matk_and_more.py │ │ │ │ ├── 0005_character_timestamp_memoria_timestamp.py │ │ │ │ ├── 0006_remove_character_timestamp_remove_memoria_timestamp.py │ │ │ │ ├── 0007_character_limit.py │ │ │ │ ├── 0008_memoria_limit.py │ │ │ │ ├── 0009_skill_val0_skill_val3_skill_val4_skill_val5_and_more.py │ │ │ │ ├── 0010_alter_skill_val0.py │ │ │ │ ├── 0011_character_note_memoria_note.py │ │ │ │ ├── 0012_skill_val0_2_skill_val1_2_skill_val2_2_skill_val3_2_and_more.py │ │ │ │ ├── 0013_character_gbl_memoria_gbl.py │ │ │ │ ├── 0014_character_leader_skill_desc_and_more.py │ │ │ │ ├── 0015_remove_memoria_hp1_remove_memoria_matk1_and_more.py │ │ │ │ ├── 0016_passive_val2_passive_val3_passive_val4.py │ │ │ │ ├── 0017_passive_num.py │ │ │ │ ├── 0018_alter_passive_options.py │ │ │ │ ├── 0019_emblem.py │ │ │ │ ├── 0020_remove_emblem_desc1_remove_emblem_desc2_and_more.py │ │ │ │ ├── 0021_emblem_eid.py │ │ │ │ ├── 0022_alter_character_options_alter_memoria_options_and_more.py │ │ │ │ ├── 0023_memoria_illustrator.py │ │ │ │ ├── 0024_alter_character_options_character_six_star_and_more.py │ │ │ │ ├── 0025_alter_skill_break6_alter_skill_pow6.py │ │ │ │ ├── 0026_skill_evol.py │ │ │ │ ├── 0027_passive_evol.py │ │ │ │ ├── 0028_passive_val5.py │ │ │ │ ├── 0029_passive_val6.py │ │ │ │ ├── 0030_alter_skill_break1_alter_skill_break2_and_more.py │ │ │ │ ├── 0031_skill_val7_skill_val7_2_skill_val8_skill_val8_2.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── items_a25 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_item_options_alter_material_color.py │ │ │ │ ├── 0003_item_slug.py │ │ │ │ ├── 0004_alter_equipment_val_bad_alter_equipment_val_good.py │ │ │ │ ├── 0005_alter_recipe_options_remove_combatitem_traits_and_more.py │ │ │ │ ├── 0006_item_timestamp.py │ │ │ │ ├── 0007_item_limited.py │ │ │ │ ├── 0008_latestupdate.py │ │ │ │ ├── 0009_remove_item_timestamp.py │ │ │ │ ├── 0010_recipetab_recipe_tab.py │ │ │ │ ├── 0011_remove_recipe_tab_remove_recipetab_desc_and_more.py │ │ │ │ ├── 0012_recipepage_book.py │ │ │ │ ├── 0013_remove_item_limited_item_limit.py │ │ │ │ ├── 0014_item_note.py │ │ │ │ ├── 0015_item_gbl_recipepage_gbl_latestupdategbl.py │ │ │ │ ├── 0016_equipment_val2_bad_equipment_val2_good.py │ │ │ │ ├── 0017_remove_recipe_char1_remove_recipe_char2_and_more.py │ │ │ │ ├── 0018_combatitem_val2_bad_combatitem_val2_good.py │ │ │ │ ├── 0019_alter_recipe_options_alter_recipepage_options_and_more.py │ │ │ │ ├── 0020_recipe_chara_alter_recipe_ing1.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── misc_a25 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_research_kind.py │ │ │ │ ├── 0003_alter_trait_cat_alter_trait_kind_alter_trait_trans.py │ │ │ │ ├── 0004_alter_filterable_slug.py │ │ │ │ ├── 0005_alter_filterable_kind_alter_filterable_slug_and_more.py │ │ │ │ ├── 0006_alter_name_text_en.py │ │ │ │ ├── 0007_trait_trans_acc_trait_trans_arm_trait_trans_atk_and_more.py │ │ │ │ ├── 0008_trait_timestamp.py │ │ │ │ ├── 0009_update.py │ │ │ │ ├── 0010_delete_update_remove_trait_timestamp.py │ │ │ │ ├── 0011_remove_trait_trans.py │ │ │ │ ├── 0012_trait_note.py │ │ │ │ ├── 0013_alter_trait_slug.py │ │ │ │ ├── 0014_alter_desc_text_en_alter_desc_text_ja.py │ │ │ │ ├── 0015_alter_desc_text_en_alter_name_text_en.py │ │ │ │ ├── 0016_desc_text_sc_desc_text_tc_filterable_text_sc_and_more.py │ │ │ │ ├── 0017_trait_gbl.py │ │ │ │ ├── 0018_alter_desc_text_en.py │ │ │ │ ├── 0019_alter_desc_text_en_alter_desc_text_sc_and_more.py │ │ │ │ ├── 0020_alter_name_text_en.py │ │ │ │ ├── 0021_alter_filterable_text_en.py │ │ │ │ ├── 0022_alter_desc_text_ja.py │ │ │ │ ├── 0023_alter_name_text_en.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── quest_a25 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_scorebattledifficulties_combat_level_and_more.py │ │ │ │ ├── 0003_remove_scorebattle_difficulties_and_more.py │ │ │ │ ├── 0004_remove_scorebattledifficulties_num.py │ │ │ │ ├── 0005_alter_dungeonfloor_options.py │ │ │ │ ├── 0006_alter_dungeonfloor_effects_alter_tower_effects_and_more.py │ │ │ │ ├── 0007_dungeon_gbl_scorebattle_gbl_training_gbl.py │ │ │ │ ├── 0008_dungeonfloor_q_id_scorebattledifficulties_q_id_and_more.py │ │ │ │ ├── 0009_tower_battle.py │ │ │ │ ├── 0010_alter_enemyskill_area.py │ │ │ │ ├── 0011_alter_enemyskill_elem.py │ │ │ │ ├── 0012_alter_enemyskill_area.py │ │ │ │ ├── 0013_remove_enemy_desc.py │ │ │ │ ├── 0014_wave_w_id.py │ │ │ │ ├── 0015_battle_b_id.py │ │ │ │ ├── 0016_scorebattledifficulties_battle.py │ │ │ │ ├── 0017_alter_tower_options.py │ │ │ │ ├── 0018_skillkind_enemy_skills.py │ │ │ │ ├── 0019_remove_enemy_burst_remove_enemy_extra_and_more.py │ │ │ │ ├── 0020_remove_dungeonfloor_rewards.py │ │ │ │ ├── 0021_scorebattle_chap_scorebattle_sect.py │ │ │ │ ├── 0022_alter_scorebattle_options_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── test_a25.py │ │ └── urls.py │ ├── A25RW │ │ ├── apps.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_category_trait_gift.py │ │ │ ├── 0003_alter_category_name.py │ │ │ ├── 0004_alter_flavortext_char3_alter_flavortext_char4_and_more.py │ │ │ ├── 0005_rename_left_color_gift_lc_rename_right_color_gift_rc.py │ │ │ ├── 0006_alter_trait_val1_1_alter_trait_val1_2_and_more.py │ │ │ ├── 0007_effect.py │ │ │ ├── 0008_alter_effect_options.py │ │ │ ├── 0009_effect_val0_2.py │ │ │ ├── 0010_item.py │ │ │ ├── 0011_item_icon.py │ │ │ ├── 0012_item_visible.py │ │ │ ├── 0013_alter_item_flavor.py │ │ │ ├── 0014_alter_flavortext_char2_alter_flavortext_char3_and_more.py │ │ │ ├── 0015_item_dlc.py │ │ │ ├── 0016_remove_item_flavor_item_char1_item_char2_item_char3_and_more.py │ │ │ ├── 0017_itemeffect_item_effects.py │ │ │ ├── 0018_alter_itemeffect_item.py │ │ │ ├── 0019_gatherdata.py │ │ │ ├── 0020_item_trait.py │ │ │ ├── 0021_ingredient.py │ │ │ ├── 0022_alter_trait_combo1_alter_trait_combo2.py │ │ │ ├── 0023_remove_effect_val0_1_remove_effect_val0_2_and_more.py │ │ │ ├── 0024_item_quantity_item_uses.py │ │ │ ├── 0025_recipenode.py │ │ │ ├── 0026_alter_recipenode_char.py │ │ │ ├── 0027_itemmix.py │ │ │ ├── 0028_shop_shopslot.py │ │ │ ├── 0029_quest.py │ │ │ ├── 0030_enemy_enemyarea.py │ │ │ ├── 0031_item_add_alter_recipenode_ing_and_more.py │ │ │ ├── 0032_recipetree_recipenode_tree_model.py │ │ │ ├── 0033_recipetree_name.py │ │ │ ├── 0034_trait_dlc.py │ │ │ ├── 0035_effect_val6_1_effect_val6_2_effect_val7_1_and_more.py │ │ │ ├── 0036_enemy_dlc.py │ │ │ ├── 0037_recipenode_hide.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── urls.py │ │ └── viewsets.py │ ├── A26 │ │ ├── items_a26 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_remove_trait_max_level_trait_no_level.py │ │ │ │ ├── 0003_alter_trait_desc2.py │ │ │ │ ├── 0004_alter_trait_lv_max_rand_range_and_more.py │ │ │ │ ├── 0005_alter_trait_desc1_alter_trait_desc2_effect.py │ │ │ │ ├── 0006_trait_group_category_material_item.py │ │ │ │ ├── 0007_remove_item_lv.py │ │ │ │ ├── 0008_ingredienteffect_itemstatus.py │ │ │ │ ├── 0009_recipeeffect_recipelevel_recipe.py │ │ │ │ ├── 0010_remove_recipeeffect_ing_recipeeffect_cat_and_more.py │ │ │ │ ├── 0011_alter_recipeeffect_eff.py │ │ │ │ ├── 0012_necessarymaterial_recipematerial.py │ │ │ │ ├── 0013_item_location.py │ │ │ │ ├── 0014_item_comfort_goal.py │ │ │ │ ├── 0015_traitgroup_alter_trait_group.py │ │ │ │ ├── 0016_remove_trait_group.py │ │ │ │ ├── 0017_trait_group.py │ │ │ │ ├── 0018_alter_recipematerial_item.py │ │ │ │ ├── 0019_item_hidden.py │ │ │ │ ├── 0020_item_quest.py │ │ │ │ ├── 0021_alter_effect_options_alter_item_options_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── misc_a26 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_alter_coordinate_cid_and_more.py │ │ │ │ ├── 0003_alter_coordinate_x_alter_coordinate_z.py │ │ │ │ ├── 0004_questdata.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── monsters_a26 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_monster_race.py │ │ │ │ ├── 0003_monster_location.py │ │ │ │ ├── 0004_alter_monster_options.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── test_a26.py │ │ └── urls.py │ ├── BR1 │ │ ├── areas_br1 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ └── serializers.py │ │ ├── demons_br1 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_demon_index.py │ │ │ │ ├── 0003_auto_20210612_2158.py │ │ │ │ ├── 0004_alter_demon_options.py │ │ │ │ ├── 0005_rename_slugname_demon_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── fragments_br1 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_rename_slugname_fragment_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── items_br1 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_item_index.py │ │ │ │ ├── 0003_alter_item_options.py │ │ │ │ ├── 0004_rename_slugname_item_slug.py │ │ │ │ ├── 0005_rename_description_item_desc.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── missions_br1 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_mission_slugname.py │ │ │ │ ├── 0003_mission_character.py │ │ │ │ ├── 0004_rename_slugname_mission_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── skills_br1 │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20210612_0609.py │ │ │ │ ├── 0003_auto_20210612_0614.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ └── urls.py │ ├── BRSL │ │ ├── demons_brsl │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_demon_isdlc.py │ │ │ │ ├── 0003_auto_20211205_1032.py │ │ │ │ ├── 0004_auto_20211205_1038.py │ │ │ │ ├── 0005_alter_demon_warp.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── facilities_brsl │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_remove_facilityeffect_slugname.py │ │ │ │ ├── 0003_rename_val3_facilityeffect_val2.py │ │ │ │ ├── 0004_facilityeffect_slug.py │ │ │ │ ├── 0005_auto_20211204_0829.py │ │ │ │ ├── 0006_alter_facilityset_effect.py │ │ │ │ ├── 0007_alter_facilityeffectline_effect.py │ │ │ │ ├── 0008_facility_isdlc.py │ │ │ │ ├── 0009_facilityeffdata_facilityeffline.py │ │ │ │ ├── 0010_auto_20211211_0756.py │ │ │ │ ├── 0011_facilitying_ingdata.py │ │ │ │ ├── 0012_auto_20211212_0042.py │ │ │ │ ├── 0013_remove_facilityingredient_category_and_more.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── fragments_brsl │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20211124_0117.py │ │ │ │ ├── 0003_auto_20211124_0119.py │ │ │ │ ├── 0004_auto_20211124_0359.py │ │ │ │ ├── 0005_character_index.py │ │ │ │ ├── 0006_alter_character_options.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── items_brsl │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20211201_0319.py │ │ │ │ ├── 0003_alter_item_char.py │ │ │ │ ├── 0004_auto_20211201_0649.py │ │ │ │ ├── 0005_unit_unit_en_unit_ja_unit_sc_unit_tc.py │ │ │ │ ├── 0006_auto_20211204_1043.py │ │ │ │ ├── 0007_auto_20211205_0942.py │ │ │ │ ├── 0008_skillline.py │ │ │ │ ├── 0009_auto_20211206_0019.py │ │ │ │ ├── 0010_effdata_effline.py │ │ │ │ ├── 0011_delete_effectline.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── regions_brsl │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20211205_1138.py │ │ │ │ ├── 0003_alter_area_map.py │ │ │ │ ├── 0004_auto_20211207_0306.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ ├── skills_brsl │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20211204_1716.py │ │ │ │ ├── 0003_auto_20211204_1724.py │ │ │ │ ├── 0004_rename_slugname_skill_slug.py │ │ │ │ ├── 0005_remove_skill_slug.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── viewsets.py │ │ └── urls.py │ ├── __init__.py │ └── _helpers │ │ ├── common_fields.py │ │ ├── serializer_helper.py │ │ └── viewset_helper.py ├── invite │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20210323_1432.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ └── viewsets.py ├── manage.py ├── navigation │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ └── viewsets.py ├── report │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_report_options_remove_report_approved_and_more.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ └── viewsets.py ├── requirements.in ├── requirements.txt ├── run_django.sh ├── scripts │ ├── categories.py │ ├── frontend_tests │ │ ├── test_a12.py │ │ ├── test_a15.py │ │ ├── test_a16.py │ │ └── test_a26.py │ ├── import_a12_csv.py │ ├── import_a15_csv.py │ ├── import_a16_csv.py │ ├── import_a18_csv.py │ ├── import_a21_csv.py │ ├── import_a22_csv.py │ ├── import_a23_csv.py │ ├── import_a25.py │ ├── import_a25rw.py │ ├── import_a26.py │ ├── import_br1_csv.py │ ├── import_brsl_csv.py │ ├── sitemap_list_generator.py │ └── util.py └── userprofile │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── serializers.py │ └── viewsets.py ├── docker ├── .dockerignore ├── Dockerfile.angular ├── Dockerfile.django ├── Dockerfile.nginx ├── default.conf └── docker-compose.yml └── frontend ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── Dockerfile.prod ├── angular.json ├── browserslist ├── ngsw-config.json ├── package-lock.json ├── package.json ├── prerender.txt ├── proxy.conf.json ├── server.ts ├── src ├── app │ ├── _helpers │ │ ├── auth.guard.ts │ │ ├── interceptor │ │ │ ├── http-error.interceptor.ts │ │ │ ├── http.interceptor.ts │ │ │ └── jwt_interceptor.ts │ │ ├── language.guard.ts │ │ ├── local-storage.ts │ │ └── pipes │ │ │ ├── pair.pipe.ts │ │ │ └── pipes.module.ts │ ├── app-routing.module.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.server.module.ts │ ├── containers │ │ ├── index.ts │ │ └── layout │ │ │ ├── index.ts │ │ │ ├── layout.component.html │ │ │ └── layout.component.ts │ ├── services │ │ ├── authentication.service.ts │ │ ├── breadcrumb.service.ts │ │ ├── destroy.service.ts │ │ ├── history.service.ts │ │ ├── language.service.ts │ │ ├── navigation.service.ts │ │ └── seo.service.ts │ └── views │ │ ├── _components │ │ ├── category │ │ │ ├── category.component.html │ │ │ └── category.component.ts │ │ ├── cringe │ │ │ └── cringe.component.ts │ │ ├── effect │ │ │ ├── effect.component.html │ │ │ └── effect.component.ts │ │ ├── error │ │ │ └── error.component.ts │ │ ├── filter-list │ │ │ ├── filter-list.component.html │ │ │ └── filter-list.component.ts │ │ ├── item │ │ │ ├── item.component.html │ │ │ └── item.component.ts │ │ ├── popover │ │ │ ├── popover.component.html │ │ │ ├── popover.component.scss │ │ │ └── popover.component.ts │ │ └── tooltip │ │ │ ├── tooltip.component.html │ │ │ ├── tooltip.component.scss │ │ │ └── tooltip.component.ts │ │ ├── games │ │ ├── A12 │ │ │ ├── _services │ │ │ │ ├── a12.interface.ts │ │ │ │ └── a12.service.ts │ │ │ ├── a12-routing.module.ts │ │ │ ├── book │ │ │ │ ├── a12-book.component.html │ │ │ │ ├── a12-book.component.ts │ │ │ │ ├── a12-booklist.component.html │ │ │ │ └── a12-booklist.component.ts │ │ │ ├── category │ │ │ │ ├── a12-category.component.html │ │ │ │ └── a12-category.component.ts │ │ │ ├── effect │ │ │ │ ├── a12-effect.component.html │ │ │ │ ├── a12-effect.component.ts │ │ │ │ ├── a12-effectlist.component.html │ │ │ │ └── a12-effectlist.component.ts │ │ │ ├── item │ │ │ │ ├── a12-item.component.html │ │ │ │ ├── a12-item.component.ts │ │ │ │ ├── a12-itemlist.component.html │ │ │ │ └── a12-itemlist.component.ts │ │ │ ├── location │ │ │ │ ├── a12-location.component.html │ │ │ │ └── a12-location.component.ts │ │ │ ├── monster │ │ │ │ ├── a12-monster.component.html │ │ │ │ ├── a12-monster.component.ts │ │ │ │ ├── a12-monsterlist.component.html │ │ │ │ └── a12-monsterlist.component.ts │ │ │ └── trait │ │ │ │ ├── a12-trait.component.html │ │ │ │ ├── a12-trait.component.ts │ │ │ │ ├── a12-traitlist.component.html │ │ │ │ └── a12-traitlist.component.ts │ │ ├── A15 │ │ │ ├── _services │ │ │ │ ├── a15.interface.ts │ │ │ │ └── a15.service.ts │ │ │ ├── a15-routing.module.ts │ │ │ ├── book │ │ │ │ ├── a15-book.component.html │ │ │ │ ├── a15-book.component.ts │ │ │ │ ├── a15-booklist.component.html │ │ │ │ └── a15-booklist.component.ts │ │ │ ├── category │ │ │ │ ├── a15-category.component.html │ │ │ │ └── a15-category.component.ts │ │ │ ├── effect │ │ │ │ ├── a15-effect.component.html │ │ │ │ ├── a15-effect.component.ts │ │ │ │ ├── a15-effectlist.component.html │ │ │ │ └── a15-effectlist.component.ts │ │ │ ├── item │ │ │ │ ├── a15-item.component.html │ │ │ │ ├── a15-item.component.ts │ │ │ │ ├── a15-itemlist.component.html │ │ │ │ └── a15-itemlist.component.ts │ │ │ ├── location │ │ │ │ ├── a15-location.component.html │ │ │ │ └── a15-location.component.ts │ │ │ ├── monster │ │ │ │ ├── a15-monster.component.html │ │ │ │ ├── a15-monster.component.ts │ │ │ │ ├── a15-monsterlist.component.html │ │ │ │ └── a15-monsterlist.component.ts │ │ │ └── property │ │ │ │ ├── a15-property.component.html │ │ │ │ ├── a15-property.component.ts │ │ │ │ ├── a15-propertylist.component.html │ │ │ │ └── a15-propertylist.component.ts │ │ ├── A16 │ │ │ ├── _services │ │ │ │ ├── a16.interface.ts │ │ │ │ └── a16.service.ts │ │ │ ├── a16-routing.module.ts │ │ │ ├── book │ │ │ │ ├── a16-book.component.html │ │ │ │ ├── a16-book.component.ts │ │ │ │ ├── a16-booklist.component.html │ │ │ │ └── a16-booklist.component.ts │ │ │ ├── category │ │ │ │ ├── a16-category.component.html │ │ │ │ └── a16-category.component.ts │ │ │ ├── effect │ │ │ │ ├── a16-effect.component.html │ │ │ │ ├── a16-effect.component.ts │ │ │ │ ├── a16-effectlist.component.html │ │ │ │ └── a16-effectlist.component.ts │ │ │ ├── item │ │ │ │ ├── a16-item.component.html │ │ │ │ ├── a16-item.component.ts │ │ │ │ ├── a16-itemlist.component.html │ │ │ │ └── a16-itemlist.component.ts │ │ │ ├── location │ │ │ │ ├── a16-location.component.html │ │ │ │ └── a16-location.component.ts │ │ │ ├── monster │ │ │ │ ├── a16-monster.component.html │ │ │ │ ├── a16-monster.component.ts │ │ │ │ ├── a16-monsterlist.component.html │ │ │ │ └── a16-monsterlist.component.ts │ │ │ └── property │ │ │ │ ├── a16-property.component.html │ │ │ │ ├── a16-property.component.ts │ │ │ │ ├── a16-propertylist.component.html │ │ │ │ └── a16-propertylist.component.ts │ │ ├── A18 │ │ │ ├── _services │ │ │ │ ├── a18.interface.ts │ │ │ │ └── a18.service.ts │ │ │ ├── a18-routing.module.ts │ │ │ ├── catalyst │ │ │ │ ├── a18-catalystlist.component.html │ │ │ │ └── a18-catalystlist.component.ts │ │ │ ├── category │ │ │ │ ├── a18-category.component.html │ │ │ │ └── a18-category.component.ts │ │ │ ├── effect │ │ │ │ ├── a18-effect.component.html │ │ │ │ ├── a18-effect.component.ts │ │ │ │ ├── a18-effectlist.component.html │ │ │ │ └── a18-effectlist.component.ts │ │ │ ├── item │ │ │ │ ├── a18-item.component.html │ │ │ │ ├── a18-item.component.ts │ │ │ │ ├── a18-itemlist.component.html │ │ │ │ └── a18-itemlist.component.ts │ │ │ ├── monster │ │ │ │ ├── a18-monster.component.html │ │ │ │ ├── a18-monster.component.ts │ │ │ │ ├── a18-monsterlist.component.html │ │ │ │ └── a18-monsterlist.component.ts │ │ │ ├── recipe │ │ │ │ ├── a18-recipe.component.html │ │ │ │ └── a18-recipe.component.ts │ │ │ ├── shop │ │ │ │ ├── a18-shop.component.html │ │ │ │ └── a18-shop.component.ts │ │ │ └── trait │ │ │ │ ├── a18-trait.component.html │ │ │ │ ├── a18-trait.component.ts │ │ │ │ ├── a18-traitlist.component.html │ │ │ │ └── a18-traitlist.component.ts │ │ ├── A22 │ │ │ ├── _services │ │ │ │ ├── a22.interface.ts │ │ │ │ └── a22.service.ts │ │ │ ├── a22-routing.module.ts │ │ │ ├── category │ │ │ │ ├── a22-category.component.html │ │ │ │ └── a22-category.component.ts │ │ │ ├── effect │ │ │ │ ├── a22-effect.component.html │ │ │ │ ├── a22-effect.component.ts │ │ │ │ ├── a22-effectlist.component.html │ │ │ │ └── a22-effectlist.component.ts │ │ │ ├── item │ │ │ │ ├── a22-item.component.html │ │ │ │ ├── a22-item.component.ts │ │ │ │ ├── a22-itemlist.component.html │ │ │ │ └── a22-itemlist.component.ts │ │ │ ├── location │ │ │ │ ├── a22-location.component.html │ │ │ │ └── a22-location.component.ts │ │ │ ├── monster │ │ │ │ ├── a22-monster.component.html │ │ │ │ ├── a22-monster.component.ts │ │ │ │ ├── a22-monsterlist.component.html │ │ │ │ └── a22-monsterlist.component.ts │ │ │ ├── shopdevelop │ │ │ │ ├── a22-shopdevelop.component.html │ │ │ │ └── a22-shopdevelop.component.ts │ │ │ └── trait │ │ │ │ ├── a22-trait.component.html │ │ │ │ ├── a22-trait.component.ts │ │ │ │ ├── a22-traitlist.component.html │ │ │ │ └── a22-traitlist.component.ts │ │ ├── A23 │ │ │ ├── _services │ │ │ │ ├── a23.interface.ts │ │ │ │ └── a23.service.ts │ │ │ ├── a23-routing.module.ts │ │ │ ├── category │ │ │ │ ├── a23-category.component.html │ │ │ │ └── a23-category.component.ts │ │ │ ├── effect │ │ │ │ ├── a23-effect.component.html │ │ │ │ ├── a23-effect.component.ts │ │ │ │ ├── a23-effectlist.component.html │ │ │ │ └── a23-effectlist.component.ts │ │ │ ├── item │ │ │ │ ├── a23-book.component.html │ │ │ │ ├── a23-book.component.ts │ │ │ │ ├── a23-item.component.html │ │ │ │ ├── a23-item.component.ts │ │ │ │ ├── a23-itemlist.component.html │ │ │ │ └── a23-itemlist.component.ts │ │ │ ├── location │ │ │ │ ├── a23-location.component.html │ │ │ │ └── a23-location.component.ts │ │ │ ├── majorgather │ │ │ │ ├── a23-majorgather.component.html │ │ │ │ └── a23-majorgather.component.ts │ │ │ ├── monster │ │ │ │ ├── a23-monster.component.html │ │ │ │ ├── a23-monster.component.ts │ │ │ │ ├── a23-monsterlist.component.html │ │ │ │ └── a23-monsterlist.component.ts │ │ │ ├── recipe │ │ │ │ ├── a23-recipe.component.html │ │ │ │ └── a23-recipe.component.ts │ │ │ ├── seed │ │ │ │ ├── a23-seed.component.html │ │ │ │ └── a23-seed.component.ts │ │ │ └── trait │ │ │ │ ├── a23-trait.component.html │ │ │ │ ├── a23-trait.component.ts │ │ │ │ ├── a23-traitlist.component.html │ │ │ │ └── a23-traitlist.component.ts │ │ ├── A25 │ │ │ ├── _services │ │ │ │ ├── a25.interface.ts │ │ │ │ └── a25.service.ts │ │ │ ├── a25-routing.module.ts │ │ │ ├── character │ │ │ │ ├── a25-chara.component.html │ │ │ │ ├── a25-chara.component.ts │ │ │ │ ├── a25-charaframe.component.html │ │ │ │ ├── a25-charaframe.component.ts │ │ │ │ ├── a25-charalist.component.html │ │ │ │ └── a25-charalist.component.ts │ │ │ ├── collection │ │ │ │ ├── a25-collection.component.html │ │ │ │ └── a25-collection.component.ts │ │ │ ├── item │ │ │ │ ├── a25-icon.component.html │ │ │ │ ├── a25-icon.component.ts │ │ │ │ ├── a25-item.component.html │ │ │ │ ├── a25-item.component.ts │ │ │ │ ├── a25-materiallist.component.html │ │ │ │ ├── a25-materiallist.component.ts │ │ │ │ ├── a25-recipe.component.html │ │ │ │ ├── a25-recipe.component.ts │ │ │ │ ├── a25-synthlist.component.html │ │ │ │ └── a25-synthlist.component.ts │ │ │ ├── memoria │ │ │ │ ├── a25-memoria.component.html │ │ │ │ ├── a25-memoria.component.ts │ │ │ │ ├── a25-memorialist.component.html │ │ │ │ └── a25-memorialist.component.ts │ │ │ ├── quest │ │ │ │ ├── a25-dungeon.component.html │ │ │ │ ├── a25-dungeon.component.ts │ │ │ │ ├── a25-scorebattle.component.html │ │ │ │ ├── a25-scorebattle.component.ts │ │ │ │ ├── a25-tower.component.html │ │ │ │ └── a25-tower.component.ts │ │ │ ├── research │ │ │ │ ├── a25-research.component.html │ │ │ │ └── a25-research.component.ts │ │ │ ├── resleri.scss │ │ │ ├── trait │ │ │ │ ├── a25-trait.component.html │ │ │ │ ├── a25-trait.component.ts │ │ │ │ ├── a25-traitlist.component.html │ │ │ │ └── a25-traitlist.component.ts │ │ │ └── update │ │ │ │ ├── a25-update.component.html │ │ │ │ └── a25-update.component.ts │ │ ├── A25RW │ │ │ ├── _services │ │ │ │ ├── a25rw.interface.ts │ │ │ │ └── a25rw.service.ts │ │ │ ├── a25rw-routing.module.ts │ │ │ ├── category │ │ │ │ ├── a25rw-category.component.html │ │ │ │ └── a25rw-category.component.ts │ │ │ ├── effect │ │ │ │ ├── a25rw-effect.component.html │ │ │ │ ├── a25rw-effect.component.ts │ │ │ │ ├── a25rw-effectlist.component.html │ │ │ │ └── a25rw-effectlist.component.ts │ │ │ ├── item │ │ │ │ ├── a25rw-item.component.html │ │ │ │ ├── a25rw-item.component.ts │ │ │ │ ├── a25rw-itemlist.component.html │ │ │ │ ├── a25rw-itemlist.component.ts │ │ │ │ ├── a25rw-recipe.component.html │ │ │ │ ├── a25rw-recipe.component.ts │ │ │ │ ├── a25rw-tree.component.html │ │ │ │ └── a25rw-tree.component.ts │ │ │ ├── monster │ │ │ │ ├── a25rw-monster.component.html │ │ │ │ ├── a25rw-monster.component.ts │ │ │ │ ├── a25rw-monsterlist.component.html │ │ │ │ └── a25rw-monsterlist.component.ts │ │ │ ├── shop │ │ │ │ ├── a25rw-shop.component.html │ │ │ │ └── a25rw-shop.component.ts │ │ │ └── trait │ │ │ │ ├── a25rw-trait.component.html │ │ │ │ ├── a25rw-trait.component.ts │ │ │ │ ├── a25rw-traitlist.component.html │ │ │ │ └── a25rw-traitlist.component.ts │ │ ├── A26 │ │ │ ├── _services │ │ │ │ ├── a26.interface.ts │ │ │ │ └── a26.service.ts │ │ │ ├── a26-routing.module.ts │ │ │ ├── category │ │ │ │ ├── a26-category.component.html │ │ │ │ └── a26-category.component.ts │ │ │ ├── effect │ │ │ │ ├── a26-effect.component.html │ │ │ │ ├── a26-effect.component.ts │ │ │ │ ├── a26-effectlist.component.html │ │ │ │ └── a26-effectlist.component.ts │ │ │ ├── item │ │ │ │ ├── a26-item-icons.ts │ │ │ │ ├── a26-item.component.html │ │ │ │ ├── a26-item.component.ts │ │ │ │ ├── a26-itemlist.component.html │ │ │ │ └── a26-itemlist.component.ts │ │ │ ├── map │ │ │ │ ├── a26-map.component.ts │ │ │ │ ├── a26-memory-vial.component.ts │ │ │ │ └── a26-treasure-trove.component.ts │ │ │ ├── monster │ │ │ │ ├── a26-monster.component.html │ │ │ │ ├── a26-monster.component.ts │ │ │ │ ├── a26-monsterlist.component.html │ │ │ │ └── a26-monsterlist.component.ts │ │ │ ├── trait │ │ │ │ ├── a26-trait.component.html │ │ │ │ ├── a26-trait.component.ts │ │ │ │ ├── a26-traitlist.component.html │ │ │ │ └── a26-traitlist.component.ts │ │ │ └── yumia.scss │ │ ├── BR1 │ │ │ ├── _services │ │ │ │ ├── br1.interface.ts │ │ │ │ └── br1.service.ts │ │ │ ├── br1-routing.module.ts │ │ │ ├── demon │ │ │ │ ├── br1-demon.component.html │ │ │ │ ├── br1-demon.component.ts │ │ │ │ ├── br1-demonlist.component.html │ │ │ │ └── br1-demonlist.component.ts │ │ │ ├── fragment │ │ │ │ ├── br1-fragmentlist.component.html │ │ │ │ └── br1-fragmentlist.component.ts │ │ │ ├── item │ │ │ │ ├── br1-item.component.html │ │ │ │ ├── br1-item.component.ts │ │ │ │ ├── br1-itemlist.component.html │ │ │ │ └── br1-itemlist.component.ts │ │ │ ├── mission │ │ │ │ ├── br1-missionlist.component.html │ │ │ │ └── br1-missionlist.component.ts │ │ │ └── skill │ │ │ │ ├── br1-skilllist.component.html │ │ │ │ └── br1-skilllist.component.ts │ │ ├── BRSL │ │ │ ├── _services │ │ │ │ ├── brsl.interface.ts │ │ │ │ └── brsl.service.ts │ │ │ ├── brsl-routing.module.ts │ │ │ ├── demon │ │ │ │ ├── brsl-demon.component.html │ │ │ │ ├── brsl-demon.component.ts │ │ │ │ ├── brsl-demonlist.component.html │ │ │ │ └── brsl-demonlist.component.ts │ │ │ ├── facility │ │ │ │ ├── brsl-facility.component.html │ │ │ │ ├── brsl-facility.component.ts │ │ │ │ ├── brsl-facilitylist.component.html │ │ │ │ ├── brsl-facilitylist.component.ts │ │ │ │ ├── brsl-facilityset.component.html │ │ │ │ └── brsl-facilityset.component.ts │ │ │ ├── fragment │ │ │ │ ├── brsl-fragmentlist.component.html │ │ │ │ └── brsl-fragmentlist.component.ts │ │ │ ├── item │ │ │ │ ├── brsl-item.component.html │ │ │ │ ├── brsl-item.component.ts │ │ │ │ ├── brsl-itemlist.component.html │ │ │ │ └── brsl-itemlist.component.ts │ │ │ ├── location │ │ │ │ ├── brsl-location.component.html │ │ │ │ └── brsl-location.component.ts │ │ │ ├── skill │ │ │ │ ├── brsl-skill.component.html │ │ │ │ └── brsl-skill.component.ts │ │ │ └── unit │ │ │ │ ├── brsl-unit.component.html │ │ │ │ └── brsl-unit.component.ts │ │ ├── _prototype │ │ │ ├── SharedModules │ │ │ │ └── common-imports.ts │ │ │ ├── data.component.ts │ │ │ ├── dialog-use.component.ts │ │ │ ├── filterable.component.ts │ │ │ ├── fragmented.component.ts │ │ │ └── single.component.ts │ │ └── _scss │ │ │ └── dusk.scss │ │ └── main │ │ ├── _interfaces │ │ ├── blog.ts │ │ ├── section.ts │ │ └── user.ts │ │ ├── _services │ │ ├── blog.service.ts │ │ ├── errorcode.service.ts │ │ ├── setting.service.ts │ │ └── user.service.ts │ │ ├── blog │ │ ├── blog.component.html │ │ ├── blog.component.ts │ │ └── blog.scss │ │ ├── home │ │ ├── home.component.html │ │ ├── home.component.ts │ │ └── home.scss │ │ ├── user-facing │ │ ├── create │ │ │ ├── create.component.html │ │ │ └── create.component.ts │ │ ├── login │ │ │ ├── login.component.html │ │ │ └── login.component.ts │ │ ├── moderate │ │ │ ├── moderate.component.html │ │ │ └── moderate.component.ts │ │ ├── register │ │ │ ├── register.component.html │ │ │ └── register.component.ts │ │ ├── settings │ │ │ ├── settings.component.html │ │ │ └── settings.component.ts │ │ └── user-facing.scss │ │ └── user │ │ ├── user.component.html │ │ └── user.component.ts ├── environments │ ├── environment.prod.ts │ ├── environment.ts │ ├── language-data.ts │ └── localization.ts ├── express.tokens.ts ├── index.html ├── main.server.ts ├── main.ts ├── polyfills.ts ├── robots.txt └── scss │ ├── _custom.scss │ ├── _material.scss │ ├── _variables.scss │ ├── icons.scss │ ├── specific │ ├── _badge.scss │ ├── _breadcrumb.scss │ ├── _card.scss │ ├── _grid.scss │ ├── _material-fix.scss │ ├── _navigation.scss │ ├── _table.scss │ └── _tag.scss │ ├── style.scss │ └── vendors │ └── _variables.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/README.md -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/Database/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/Database/settings.py -------------------------------------------------------------------------------- /backend/Database/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/Database/urls.py -------------------------------------------------------------------------------- /backend/Database/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/Database/wsgi.py -------------------------------------------------------------------------------- /backend/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/Dockerfile.prod -------------------------------------------------------------------------------- /backend/auth/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/auth/apps.py -------------------------------------------------------------------------------- /backend/auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/auth/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/auth/serializers.py -------------------------------------------------------------------------------- /backend/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/auth/views.py -------------------------------------------------------------------------------- /backend/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/apps.py -------------------------------------------------------------------------------- /backend/blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/blog/migrations/0002_auto_20210208_2034.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0002_auto_20210208_2034.py -------------------------------------------------------------------------------- /backend/blog/migrations/0003_auto_20210208_2043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0003_auto_20210208_2043.py -------------------------------------------------------------------------------- /backend/blog/migrations/0004_auto_20210208_2044.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0004_auto_20210208_2044.py -------------------------------------------------------------------------------- /backend/blog/migrations/0005_section_fullname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0005_section_fullname.py -------------------------------------------------------------------------------- /backend/blog/migrations/0006_auto_20210326_1327.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0006_auto_20210326_1327.py -------------------------------------------------------------------------------- /backend/blog/migrations/0007_tags_slugname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0007_tags_slugname.py -------------------------------------------------------------------------------- /backend/blog/migrations/0008_auto_20210328_1607.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0008_auto_20210328_1607.py -------------------------------------------------------------------------------- /backend/blog/migrations/0009_blog_closed_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0009_blog_closed_comment.py -------------------------------------------------------------------------------- /backend/blog/migrations/0010_alter_comment_blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0010_alter_comment_blog.py -------------------------------------------------------------------------------- /backend/blog/migrations/0011_alter_comment_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0011_alter_comment_name.py -------------------------------------------------------------------------------- /backend/blog/migrations/0013_rename_description_blog_desc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0013_rename_description_blog_desc.py -------------------------------------------------------------------------------- /backend/blog/migrations/0014_alter_section_fullname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/migrations/0014_alter_section_fullname.py -------------------------------------------------------------------------------- /backend/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/models.py -------------------------------------------------------------------------------- /backend/blog/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/serializers.py -------------------------------------------------------------------------------- /backend/blog/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/blog/viewsets.py -------------------------------------------------------------------------------- /backend/fixtures/a12_data.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/a12_data.json.gz -------------------------------------------------------------------------------- /backend/fixtures/a15_data.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/a15_data.json.gz -------------------------------------------------------------------------------- /backend/fixtures/a16_data.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/a16_data.json.gz -------------------------------------------------------------------------------- /backend/fixtures/a18_data.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/a18_data.json.gz -------------------------------------------------------------------------------- /backend/fixtures/a22_data.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/a22_data.json.gz -------------------------------------------------------------------------------- /backend/fixtures/a23_data.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/a23_data.json.gz -------------------------------------------------------------------------------- /backend/fixtures/a25_data.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/a25_data.json.gz -------------------------------------------------------------------------------- /backend/fixtures/a26_data.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/a26_data.json.gz -------------------------------------------------------------------------------- /backend/fixtures/br1_data.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/br1_data.json.gz -------------------------------------------------------------------------------- /backend/fixtures/brsl_data.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/brsl_data.json.gz -------------------------------------------------------------------------------- /backend/fixtures/navigation.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/fixtures/navigation.json.gz -------------------------------------------------------------------------------- /backend/games/A12/areadata_a12/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/areadata_a12/apps.py -------------------------------------------------------------------------------- /backend/games/A12/areadata_a12/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/areadata_a12/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A12/areadata_a12/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A12/areadata_a12/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/areadata_a12/models.py -------------------------------------------------------------------------------- /backend/games/A12/areadata_a12/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/areadata_a12/serializers.py -------------------------------------------------------------------------------- /backend/games/A12/areadata_a12/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/areadata_a12/viewsets.py -------------------------------------------------------------------------------- /backend/games/A12/categories_a12/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/categories_a12/apps.py -------------------------------------------------------------------------------- /backend/games/A12/categories_a12/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/categories_a12/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A12/categories_a12/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A12/categories_a12/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/categories_a12/models.py -------------------------------------------------------------------------------- /backend/games/A12/categories_a12/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/categories_a12/serializers.py -------------------------------------------------------------------------------- /backend/games/A12/categories_a12/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/categories_a12/viewsets.py -------------------------------------------------------------------------------- /backend/games/A12/effects_a12/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/effects_a12/apps.py -------------------------------------------------------------------------------- /backend/games/A12/effects_a12/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/effects_a12/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A12/effects_a12/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A12/effects_a12/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/effects_a12/models.py -------------------------------------------------------------------------------- /backend/games/A12/effects_a12/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/effects_a12/serializers.py -------------------------------------------------------------------------------- /backend/games/A12/effects_a12/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/effects_a12/viewsets.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/apps.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/migrations/0002_auto_20210609_0025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/migrations/0002_auto_20210609_0025.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/migrations/0003_auto_20210609_0051.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/migrations/0003_auto_20210609_0051.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/migrations/0004_auto_20210609_0149.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/migrations/0004_auto_20210609_0149.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/migrations/0005_auto_20210609_0227.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/migrations/0005_auto_20210609_0227.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/migrations/0006_auto_20210609_0229.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/migrations/0006_auto_20210609_0229.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/migrations/0007_auto_20210609_0230.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/migrations/0007_auto_20210609_0230.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A12/items_a12/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/models.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/serializers.py -------------------------------------------------------------------------------- /backend/games/A12/items_a12/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/items_a12/viewsets.py -------------------------------------------------------------------------------- /backend/games/A12/monsters_a12/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/monsters_a12/apps.py -------------------------------------------------------------------------------- /backend/games/A12/monsters_a12/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/monsters_a12/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A12/monsters_a12/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A12/monsters_a12/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/monsters_a12/models.py -------------------------------------------------------------------------------- /backend/games/A12/monsters_a12/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/monsters_a12/serializers.py -------------------------------------------------------------------------------- /backend/games/A12/monsters_a12/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/monsters_a12/viewsets.py -------------------------------------------------------------------------------- /backend/games/A12/regions_a12/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/regions_a12/apps.py -------------------------------------------------------------------------------- /backend/games/A12/regions_a12/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/regions_a12/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A12/regions_a12/migrations/0002_region_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/regions_a12/migrations/0002_region_parent.py -------------------------------------------------------------------------------- /backend/games/A12/regions_a12/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A12/regions_a12/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/regions_a12/models.py -------------------------------------------------------------------------------- /backend/games/A12/regions_a12/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/regions_a12/serializers.py -------------------------------------------------------------------------------- /backend/games/A12/traits_a12/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/traits_a12/apps.py -------------------------------------------------------------------------------- /backend/games/A12/traits_a12/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/traits_a12/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A12/traits_a12/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A12/traits_a12/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/traits_a12/models.py -------------------------------------------------------------------------------- /backend/games/A12/traits_a12/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/traits_a12/serializers.py -------------------------------------------------------------------------------- /backend/games/A12/traits_a12/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/traits_a12/viewsets.py -------------------------------------------------------------------------------- /backend/games/A12/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A12/urls.py -------------------------------------------------------------------------------- /backend/games/A15/categories_a15/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/categories_a15/apps.py -------------------------------------------------------------------------------- /backend/games/A15/categories_a15/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/categories_a15/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A15/categories_a15/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A15/categories_a15/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/categories_a15/models.py -------------------------------------------------------------------------------- /backend/games/A15/categories_a15/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/categories_a15/serializers.py -------------------------------------------------------------------------------- /backend/games/A15/categories_a15/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/categories_a15/viewsets.py -------------------------------------------------------------------------------- /backend/games/A15/effects_a15/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/effects_a15/apps.py -------------------------------------------------------------------------------- /backend/games/A15/effects_a15/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/effects_a15/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A15/effects_a15/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A15/effects_a15/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/effects_a15/models.py -------------------------------------------------------------------------------- /backend/games/A15/effects_a15/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/effects_a15/serializers.py -------------------------------------------------------------------------------- /backend/games/A15/effects_a15/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/effects_a15/viewsets.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/apps.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0002_equip_mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0002_equip_mp.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0003_auto_20210606_1556.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0003_auto_20210606_1556.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0004_areadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0004_areadata.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0005_auto_20210606_1703.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0005_auto_20210606_1703.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0006_disassembly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0006_disassembly.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0007_auto_20210607_1410.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0007_auto_20210607_1410.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0008_auto_20210607_1412.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0008_auto_20210607_1412.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0009_auto_20210607_1413.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0009_auto_20210607_1413.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0010_disassembled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0010_disassembled.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0011_regiondata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0011_regiondata.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0012_relic_regiondata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0012_relic_regiondata.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/0013_regiondata_strong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/migrations/0013_regiondata_strong.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A15/items_a15/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/models.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/serializers.py -------------------------------------------------------------------------------- /backend/games/A15/items_a15/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/items_a15/viewsets.py -------------------------------------------------------------------------------- /backend/games/A15/monsters_a15/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/monsters_a15/apps.py -------------------------------------------------------------------------------- /backend/games/A15/monsters_a15/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/monsters_a15/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A15/monsters_a15/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A15/monsters_a15/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/monsters_a15/models.py -------------------------------------------------------------------------------- /backend/games/A15/monsters_a15/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/monsters_a15/serializers.py -------------------------------------------------------------------------------- /backend/games/A15/monsters_a15/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/monsters_a15/viewsets.py -------------------------------------------------------------------------------- /backend/games/A15/properties_a15/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/properties_a15/apps.py -------------------------------------------------------------------------------- /backend/games/A15/properties_a15/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/properties_a15/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A15/properties_a15/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A15/properties_a15/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/properties_a15/models.py -------------------------------------------------------------------------------- /backend/games/A15/properties_a15/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/properties_a15/serializers.py -------------------------------------------------------------------------------- /backend/games/A15/properties_a15/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/properties_a15/viewsets.py -------------------------------------------------------------------------------- /backend/games/A15/regions_a15/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/regions_a15/apps.py -------------------------------------------------------------------------------- /backend/games/A15/regions_a15/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/regions_a15/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A15/regions_a15/migrations/0002_fieldevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/regions_a15/migrations/0002_fieldevent.py -------------------------------------------------------------------------------- /backend/games/A15/regions_a15/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A15/regions_a15/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/regions_a15/models.py -------------------------------------------------------------------------------- /backend/games/A15/regions_a15/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/regions_a15/serializers.py -------------------------------------------------------------------------------- /backend/games/A15/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A15/urls.py -------------------------------------------------------------------------------- /backend/games/A16/areadata_a16/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/areadata_a16/apps.py -------------------------------------------------------------------------------- /backend/games/A16/areadata_a16/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/areadata_a16/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A16/areadata_a16/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A16/areadata_a16/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/areadata_a16/models.py -------------------------------------------------------------------------------- /backend/games/A16/areadata_a16/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/areadata_a16/serializers.py -------------------------------------------------------------------------------- /backend/games/A16/areadata_a16/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/areadata_a16/viewsets.py -------------------------------------------------------------------------------- /backend/games/A16/categories_a16/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/categories_a16/apps.py -------------------------------------------------------------------------------- /backend/games/A16/categories_a16/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/categories_a16/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A16/categories_a16/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A16/categories_a16/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/categories_a16/models.py -------------------------------------------------------------------------------- /backend/games/A16/categories_a16/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/categories_a16/serializers.py -------------------------------------------------------------------------------- /backend/games/A16/categories_a16/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/categories_a16/viewsets.py -------------------------------------------------------------------------------- /backend/games/A16/effects_a16/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/effects_a16/apps.py -------------------------------------------------------------------------------- /backend/games/A16/effects_a16/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/effects_a16/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A16/effects_a16/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A16/effects_a16/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/effects_a16/models.py -------------------------------------------------------------------------------- /backend/games/A16/effects_a16/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/effects_a16/serializers.py -------------------------------------------------------------------------------- /backend/games/A16/effects_a16/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/effects_a16/viewsets.py -------------------------------------------------------------------------------- /backend/games/A16/items_a16/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/items_a16/apps.py -------------------------------------------------------------------------------- /backend/games/A16/items_a16/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/items_a16/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A16/items_a16/migrations/0003_auto_20210611_0137.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/items_a16/migrations/0003_auto_20210611_0137.py -------------------------------------------------------------------------------- /backend/games/A16/items_a16/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A16/items_a16/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/items_a16/models.py -------------------------------------------------------------------------------- /backend/games/A16/items_a16/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/items_a16/serializers.py -------------------------------------------------------------------------------- /backend/games/A16/items_a16/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/items_a16/viewsets.py -------------------------------------------------------------------------------- /backend/games/A16/monsters_a16/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/monsters_a16/apps.py -------------------------------------------------------------------------------- /backend/games/A16/monsters_a16/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/monsters_a16/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A16/monsters_a16/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A16/monsters_a16/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/monsters_a16/models.py -------------------------------------------------------------------------------- /backend/games/A16/monsters_a16/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/monsters_a16/serializers.py -------------------------------------------------------------------------------- /backend/games/A16/monsters_a16/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/monsters_a16/viewsets.py -------------------------------------------------------------------------------- /backend/games/A16/properties_a16/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/properties_a16/apps.py -------------------------------------------------------------------------------- /backend/games/A16/properties_a16/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/properties_a16/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A16/properties_a16/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A16/properties_a16/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/properties_a16/models.py -------------------------------------------------------------------------------- /backend/games/A16/properties_a16/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/properties_a16/serializers.py -------------------------------------------------------------------------------- /backend/games/A16/properties_a16/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/properties_a16/viewsets.py -------------------------------------------------------------------------------- /backend/games/A16/regions_a16/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/regions_a16/apps.py -------------------------------------------------------------------------------- /backend/games/A16/regions_a16/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/regions_a16/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A16/regions_a16/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A16/regions_a16/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/regions_a16/models.py -------------------------------------------------------------------------------- /backend/games/A16/regions_a16/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/regions_a16/serializers.py -------------------------------------------------------------------------------- /backend/games/A16/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A16/urls.py -------------------------------------------------------------------------------- /backend/games/A18/effects_traits_a18/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/effects_traits_a18/apps.py -------------------------------------------------------------------------------- /backend/games/A18/effects_traits_a18/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/effects_traits_a18/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A18/effects_traits_a18/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A18/effects_traits_a18/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/effects_traits_a18/models.py -------------------------------------------------------------------------------- /backend/games/A18/effects_traits_a18/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/effects_traits_a18/serializers.py -------------------------------------------------------------------------------- /backend/games/A18/effects_traits_a18/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/effects_traits_a18/viewsets.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/apps.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/migrations/0004_catalyst_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/migrations/0004_catalyst_size.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/migrations/0007_shopslot_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/migrations/0007_shopslot_book.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/migrations/0010_masteryline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/migrations/0010_masteryline.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/migrations/0011_catalyst_used_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/migrations/0011_catalyst_used_by.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/migrations/0019_alter_item_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/migrations/0019_alter_item_book.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/migrations/0025_delete_catalyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/migrations/0025_delete_catalyst.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/migrations/0026_catalyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/migrations/0026_catalyst.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A18/items_a18/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/models.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/serializers.py -------------------------------------------------------------------------------- /backend/games/A18/items_a18/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/items_a18/viewsets.py -------------------------------------------------------------------------------- /backend/games/A18/misc_a18/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/misc_a18/apps.py -------------------------------------------------------------------------------- /backend/games/A18/misc_a18/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/misc_a18/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A18/misc_a18/migrations/0002_basictext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/misc_a18/migrations/0002_basictext.py -------------------------------------------------------------------------------- /backend/games/A18/misc_a18/migrations/0005_itemmastery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/misc_a18/migrations/0005_itemmastery.py -------------------------------------------------------------------------------- /backend/games/A18/misc_a18/migrations/0006_areaname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/misc_a18/migrations/0006_areaname.py -------------------------------------------------------------------------------- /backend/games/A18/misc_a18/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A18/misc_a18/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/misc_a18/models.py -------------------------------------------------------------------------------- /backend/games/A18/misc_a18/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/misc_a18/serializers.py -------------------------------------------------------------------------------- /backend/games/A18/misc_a18/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/misc_a18/viewsets.py -------------------------------------------------------------------------------- /backend/games/A18/monsters_a18/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/monsters_a18/apps.py -------------------------------------------------------------------------------- /backend/games/A18/monsters_a18/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/monsters_a18/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A18/monsters_a18/migrations/0003_race.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/monsters_a18/migrations/0003_race.py -------------------------------------------------------------------------------- /backend/games/A18/monsters_a18/migrations/0006_monster_isdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/monsters_a18/migrations/0006_monster_isdx.py -------------------------------------------------------------------------------- /backend/games/A18/monsters_a18/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A18/monsters_a18/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/monsters_a18/models.py -------------------------------------------------------------------------------- /backend/games/A18/monsters_a18/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/monsters_a18/serializers.py -------------------------------------------------------------------------------- /backend/games/A18/monsters_a18/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/monsters_a18/viewsets.py -------------------------------------------------------------------------------- /backend/games/A18/test_a18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/test_a18.py -------------------------------------------------------------------------------- /backend/games/A18/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A18/urls.py -------------------------------------------------------------------------------- /backend/games/A21/effects_traits_a21/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A21/effects_traits_a21/apps.py -------------------------------------------------------------------------------- /backend/games/A21/effects_traits_a21/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A21/effects_traits_a21/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A21/effects_traits_a21/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A21/effects_traits_a21/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A21/effects_traits_a21/models.py -------------------------------------------------------------------------------- /backend/games/A21/effects_traits_a21/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A21/effects_traits_a21/serializers.py -------------------------------------------------------------------------------- /backend/games/A21/effects_traits_a21/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A21/effects_traits_a21/viewsets.py -------------------------------------------------------------------------------- /backend/games/A21/items_a21/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A21/items_a21/apps.py -------------------------------------------------------------------------------- /backend/games/A21/items_a21/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A21/items_a21/models.py -------------------------------------------------------------------------------- /backend/games/A21/items_a21/serializers.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A21/items_a21/viewsets.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A21/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A21/urls.py -------------------------------------------------------------------------------- /backend/games/A22/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/categories_a22/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/categories_a22/apps.py -------------------------------------------------------------------------------- /backend/games/A22/categories_a22/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/categories_a22/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A22/categories_a22/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/categories_a22/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/categories_a22/models.py -------------------------------------------------------------------------------- /backend/games/A22/categories_a22/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/categories_a22/serializers.py -------------------------------------------------------------------------------- /backend/games/A22/categories_a22/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/categories_a22/viewsets.py -------------------------------------------------------------------------------- /backend/games/A22/effects_a22/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/effects_a22/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/effects_a22/apps.py -------------------------------------------------------------------------------- /backend/games/A22/effects_a22/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/effects_a22/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A22/effects_a22/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/effects_a22/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/effects_a22/models.py -------------------------------------------------------------------------------- /backend/games/A22/effects_a22/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/effects_a22/serializers.py -------------------------------------------------------------------------------- /backend/games/A22/effects_a22/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/effects_a22/viewsets.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/items_a22/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/apps.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0002_auto_20210413_0546.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0002_auto_20210413_0546.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0004_itemlocations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0004_itemlocations.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0005_auto_20210414_1055.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0005_auto_20210414_1055.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0006_auto_20210502_0401.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0006_auto_20210502_0401.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0007_auto_20210502_0417.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0007_auto_20210502_0417.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0008_itemareas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0008_itemareas.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0009_auto_20210502_0534.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0009_auto_20210502_0534.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0010_auto_20210502_0613.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0010_auto_20210502_0613.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0011_auto_20210502_0627.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0011_auto_20210502_0627.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0012_auto_20210502_0758.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0012_auto_20210502_0758.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0013_auto_20210508_0729.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0013_auto_20210508_0729.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/0014_alter_item_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/migrations/0014_alter_item_options.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/items_a22/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/models.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/serializers.py -------------------------------------------------------------------------------- /backend/games/A22/items_a22/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/items_a22/viewsets.py -------------------------------------------------------------------------------- /backend/games/A22/locations_a22/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/locations_a22/apps.py -------------------------------------------------------------------------------- /backend/games/A22/locations_a22/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/locations_a22/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A22/locations_a22/migrations/0003_location_isdlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/locations_a22/migrations/0003_location_isdlc.py -------------------------------------------------------------------------------- /backend/games/A22/locations_a22/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/locations_a22/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/locations_a22/models.py -------------------------------------------------------------------------------- /backend/games/A22/locations_a22/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/locations_a22/serializers.py -------------------------------------------------------------------------------- /backend/games/A22/monsters_a22/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/monsters_a22/apps.py -------------------------------------------------------------------------------- /backend/games/A22/monsters_a22/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/monsters_a22/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A22/monsters_a22/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/monsters_a22/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/monsters_a22/models.py -------------------------------------------------------------------------------- /backend/games/A22/monsters_a22/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/monsters_a22/serializers.py -------------------------------------------------------------------------------- /backend/games/A22/monsters_a22/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/monsters_a22/viewsets.py -------------------------------------------------------------------------------- /backend/games/A22/shops_a22/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/shops_a22/apps.py -------------------------------------------------------------------------------- /backend/games/A22/shops_a22/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/shops_a22/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A22/shops_a22/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/shops_a22/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/shops_a22/models.py -------------------------------------------------------------------------------- /backend/games/A22/shops_a22/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/shops_a22/serializers.py -------------------------------------------------------------------------------- /backend/games/A22/traits_a22/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/traits_a22/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/traits_a22/apps.py -------------------------------------------------------------------------------- /backend/games/A22/traits_a22/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/traits_a22/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A22/traits_a22/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A22/traits_a22/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/traits_a22/models.py -------------------------------------------------------------------------------- /backend/games/A22/traits_a22/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/traits_a22/serializers.py -------------------------------------------------------------------------------- /backend/games/A22/traits_a22/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/traits_a22/viewsets.py -------------------------------------------------------------------------------- /backend/games/A22/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A22/urls.py -------------------------------------------------------------------------------- /backend/games/A23/effects_a23/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/effects_a23/apps.py -------------------------------------------------------------------------------- /backend/games/A23/effects_a23/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/effects_a23/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A23/effects_a23/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A23/effects_a23/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/effects_a23/models.py -------------------------------------------------------------------------------- /backend/games/A23/effects_a23/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/effects_a23/serializers.py -------------------------------------------------------------------------------- /backend/games/A23/effects_a23/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/effects_a23/viewsets.py -------------------------------------------------------------------------------- /backend/games/A23/items_a23/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/items_a23/apps.py -------------------------------------------------------------------------------- /backend/games/A23/items_a23/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/items_a23/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A23/items_a23/migrations/0016_recipeidea_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/items_a23/migrations/0016_recipeidea_char.py -------------------------------------------------------------------------------- /backend/games/A23/items_a23/migrations/0019_item_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/items_a23/migrations/0019_item_add.py -------------------------------------------------------------------------------- /backend/games/A23/items_a23/migrations/0022_delete_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/items_a23/migrations/0022_delete_seed.py -------------------------------------------------------------------------------- /backend/games/A23/items_a23/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A23/items_a23/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/items_a23/models.py -------------------------------------------------------------------------------- /backend/games/A23/items_a23/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/items_a23/serializers.py -------------------------------------------------------------------------------- /backend/games/A23/items_a23/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/items_a23/viewsets.py -------------------------------------------------------------------------------- /backend/games/A23/misc_a23/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/misc_a23/apps.py -------------------------------------------------------------------------------- /backend/games/A23/misc_a23/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/misc_a23/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A23/misc_a23/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A23/misc_a23/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/misc_a23/models.py -------------------------------------------------------------------------------- /backend/games/A23/misc_a23/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/misc_a23/serializers.py -------------------------------------------------------------------------------- /backend/games/A23/monsters_a23/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/monsters_a23/apps.py -------------------------------------------------------------------------------- /backend/games/A23/monsters_a23/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/monsters_a23/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A23/monsters_a23/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A23/monsters_a23/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/monsters_a23/models.py -------------------------------------------------------------------------------- /backend/games/A23/monsters_a23/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/monsters_a23/serializers.py -------------------------------------------------------------------------------- /backend/games/A23/monsters_a23/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/monsters_a23/viewsets.py -------------------------------------------------------------------------------- /backend/games/A23/regions_a23/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/regions_a23/apps.py -------------------------------------------------------------------------------- /backend/games/A23/regions_a23/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/regions_a23/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A23/regions_a23/migrations/0005_region2_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/regions_a23/migrations/0005_region2_parent.py -------------------------------------------------------------------------------- /backend/games/A23/regions_a23/migrations/0007_climate2_mons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/regions_a23/migrations/0007_climate2_mons.py -------------------------------------------------------------------------------- /backend/games/A23/regions_a23/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A23/regions_a23/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/regions_a23/models.py -------------------------------------------------------------------------------- /backend/games/A23/regions_a23/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/regions_a23/serializers.py -------------------------------------------------------------------------------- /backend/games/A23/regions_a23/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/regions_a23/viewsets.py -------------------------------------------------------------------------------- /backend/games/A23/traits_a23/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/traits_a23/apps.py -------------------------------------------------------------------------------- /backend/games/A23/traits_a23/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/traits_a23/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A23/traits_a23/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A23/traits_a23/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/traits_a23/models.py -------------------------------------------------------------------------------- /backend/games/A23/traits_a23/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/traits_a23/serializers.py -------------------------------------------------------------------------------- /backend/games/A23/traits_a23/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/traits_a23/viewsets.py -------------------------------------------------------------------------------- /backend/games/A23/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A23/urls.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/apps.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0007_character_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0007_character_limit.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0008_memoria_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0008_memoria_limit.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0010_alter_skill_val0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0010_alter_skill_val0.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0017_passive_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0017_passive_num.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0019_emblem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0019_emblem.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0021_emblem_eid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0021_emblem_eid.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0026_skill_evol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0026_skill_evol.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0027_passive_evol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0027_passive_evol.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0028_passive_val5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0028_passive_val5.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/0029_passive_val6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/migrations/0029_passive_val6.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/models.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/serializers.py -------------------------------------------------------------------------------- /backend/games/A25/chara_a25/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/chara_a25/viewsets.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/apps.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/migrations/0003_item_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/migrations/0003_item_slug.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/migrations/0006_item_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/migrations/0006_item_timestamp.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/migrations/0007_item_limited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/migrations/0007_item_limited.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/migrations/0008_latestupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/migrations/0008_latestupdate.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/migrations/0012_recipepage_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/migrations/0012_recipepage_book.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/migrations/0014_item_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/migrations/0014_item_note.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A25/items_a25/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/models.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/serializers.py -------------------------------------------------------------------------------- /backend/games/A25/items_a25/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/items_a25/viewsets.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/apps.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0002_alter_research_kind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0002_alter_research_kind.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0006_alter_name_text_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0006_alter_name_text_en.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0008_trait_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0008_trait_timestamp.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0009_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0009_update.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0011_remove_trait_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0011_remove_trait_trans.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0012_trait_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0012_trait_note.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0013_alter_trait_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0013_alter_trait_slug.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0017_trait_gbl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0017_trait_gbl.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0018_alter_desc_text_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0018_alter_desc_text_en.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0020_alter_name_text_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0020_alter_name_text_en.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0022_alter_desc_text_ja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0022_alter_desc_text_ja.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/0023_alter_name_text_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/migrations/0023_alter_name_text_en.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/models.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/serializers.py -------------------------------------------------------------------------------- /backend/games/A25/misc_a25/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/misc_a25/viewsets.py -------------------------------------------------------------------------------- /backend/games/A25/quest_a25/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/quest_a25/apps.py -------------------------------------------------------------------------------- /backend/games/A25/quest_a25/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/quest_a25/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A25/quest_a25/migrations/0009_tower_battle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/quest_a25/migrations/0009_tower_battle.py -------------------------------------------------------------------------------- /backend/games/A25/quest_a25/migrations/0013_remove_enemy_desc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/quest_a25/migrations/0013_remove_enemy_desc.py -------------------------------------------------------------------------------- /backend/games/A25/quest_a25/migrations/0014_wave_w_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/quest_a25/migrations/0014_wave_w_id.py -------------------------------------------------------------------------------- /backend/games/A25/quest_a25/migrations/0015_battle_b_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/quest_a25/migrations/0015_battle_b_id.py -------------------------------------------------------------------------------- /backend/games/A25/quest_a25/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A25/quest_a25/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/quest_a25/models.py -------------------------------------------------------------------------------- /backend/games/A25/quest_a25/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/quest_a25/serializers.py -------------------------------------------------------------------------------- /backend/games/A25/quest_a25/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/quest_a25/viewsets.py -------------------------------------------------------------------------------- /backend/games/A25/test_a25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/test_a25.py -------------------------------------------------------------------------------- /backend/games/A25/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25/urls.py -------------------------------------------------------------------------------- /backend/games/A25RW/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/apps.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0002_category_trait_gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0002_category_trait_gift.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0003_alter_category_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0003_alter_category_name.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0007_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0007_effect.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0008_alter_effect_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0008_alter_effect_options.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0009_effect_val0_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0009_effect_val0_2.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0010_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0010_item.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0011_item_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0011_item_icon.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0012_item_visible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0012_item_visible.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0013_alter_item_flavor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0013_alter_item_flavor.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0015_item_dlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0015_item_dlc.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0017_itemeffect_item_effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0017_itemeffect_item_effects.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0018_alter_itemeffect_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0018_alter_itemeffect_item.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0019_gatherdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0019_gatherdata.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0020_item_trait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0020_item_trait.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0021_ingredient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0021_ingredient.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0024_item_quantity_item_uses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0024_item_quantity_item_uses.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0025_recipenode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0025_recipenode.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0026_alter_recipenode_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0026_alter_recipenode_char.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0027_itemmix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0027_itemmix.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0028_shop_shopslot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0028_shop_shopslot.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0029_quest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0029_quest.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0030_enemy_enemyarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0030_enemy_enemyarea.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0033_recipetree_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0033_recipetree_name.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0034_trait_dlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0034_trait_dlc.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0036_enemy_dlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0036_enemy_dlc.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/0037_recipenode_hide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/migrations/0037_recipenode_hide.py -------------------------------------------------------------------------------- /backend/games/A25RW/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A25RW/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/models.py -------------------------------------------------------------------------------- /backend/games/A25RW/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/serializers.py -------------------------------------------------------------------------------- /backend/games/A25RW/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/urls.py -------------------------------------------------------------------------------- /backend/games/A25RW/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A25RW/viewsets.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/apps.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/migrations/0003_alter_trait_desc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/migrations/0003_alter_trait_desc2.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/migrations/0007_remove_item_lv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/migrations/0007_remove_item_lv.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/migrations/0013_item_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/migrations/0013_item_location.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/migrations/0014_item_comfort_goal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/migrations/0014_item_comfort_goal.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/migrations/0016_remove_trait_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/migrations/0016_remove_trait_group.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/migrations/0017_trait_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/migrations/0017_trait_group.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/migrations/0019_item_hidden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/migrations/0019_item_hidden.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/migrations/0020_item_quest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/migrations/0020_item_quest.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A26/items_a26/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/models.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/serializers.py -------------------------------------------------------------------------------- /backend/games/A26/items_a26/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/items_a26/viewsets.py -------------------------------------------------------------------------------- /backend/games/A26/misc_a26/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/misc_a26/apps.py -------------------------------------------------------------------------------- /backend/games/A26/misc_a26/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/misc_a26/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A26/misc_a26/migrations/0004_questdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/misc_a26/migrations/0004_questdata.py -------------------------------------------------------------------------------- /backend/games/A26/misc_a26/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A26/misc_a26/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/misc_a26/models.py -------------------------------------------------------------------------------- /backend/games/A26/misc_a26/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/misc_a26/serializers.py -------------------------------------------------------------------------------- /backend/games/A26/misc_a26/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/misc_a26/viewsets.py -------------------------------------------------------------------------------- /backend/games/A26/monsters_a26/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/monsters_a26/apps.py -------------------------------------------------------------------------------- /backend/games/A26/monsters_a26/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/monsters_a26/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/A26/monsters_a26/migrations/0002_monster_race.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/monsters_a26/migrations/0002_monster_race.py -------------------------------------------------------------------------------- /backend/games/A26/monsters_a26/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/A26/monsters_a26/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/monsters_a26/models.py -------------------------------------------------------------------------------- /backend/games/A26/monsters_a26/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/monsters_a26/serializers.py -------------------------------------------------------------------------------- /backend/games/A26/monsters_a26/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/monsters_a26/viewsets.py -------------------------------------------------------------------------------- /backend/games/A26/test_a26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/test_a26.py -------------------------------------------------------------------------------- /backend/games/A26/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/A26/urls.py -------------------------------------------------------------------------------- /backend/games/BR1/areas_br1/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/areas_br1/apps.py -------------------------------------------------------------------------------- /backend/games/BR1/areas_br1/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/areas_br1/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BR1/areas_br1/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BR1/areas_br1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/areas_br1/models.py -------------------------------------------------------------------------------- /backend/games/BR1/areas_br1/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/areas_br1/serializers.py -------------------------------------------------------------------------------- /backend/games/BR1/demons_br1/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/demons_br1/apps.py -------------------------------------------------------------------------------- /backend/games/BR1/demons_br1/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/demons_br1/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BR1/demons_br1/migrations/0002_demon_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/demons_br1/migrations/0002_demon_index.py -------------------------------------------------------------------------------- /backend/games/BR1/demons_br1/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BR1/demons_br1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/demons_br1/models.py -------------------------------------------------------------------------------- /backend/games/BR1/demons_br1/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/demons_br1/serializers.py -------------------------------------------------------------------------------- /backend/games/BR1/demons_br1/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/demons_br1/viewsets.py -------------------------------------------------------------------------------- /backend/games/BR1/fragments_br1/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/fragments_br1/apps.py -------------------------------------------------------------------------------- /backend/games/BR1/fragments_br1/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/fragments_br1/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BR1/fragments_br1/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BR1/fragments_br1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/fragments_br1/models.py -------------------------------------------------------------------------------- /backend/games/BR1/fragments_br1/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/fragments_br1/serializers.py -------------------------------------------------------------------------------- /backend/games/BR1/fragments_br1/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/fragments_br1/viewsets.py -------------------------------------------------------------------------------- /backend/games/BR1/items_br1/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/items_br1/apps.py -------------------------------------------------------------------------------- /backend/games/BR1/items_br1/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/items_br1/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BR1/items_br1/migrations/0002_item_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/items_br1/migrations/0002_item_index.py -------------------------------------------------------------------------------- /backend/games/BR1/items_br1/migrations/0003_alter_item_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/items_br1/migrations/0003_alter_item_options.py -------------------------------------------------------------------------------- /backend/games/BR1/items_br1/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BR1/items_br1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/items_br1/models.py -------------------------------------------------------------------------------- /backend/games/BR1/items_br1/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/items_br1/serializers.py -------------------------------------------------------------------------------- /backend/games/BR1/items_br1/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/items_br1/viewsets.py -------------------------------------------------------------------------------- /backend/games/BR1/missions_br1/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/missions_br1/apps.py -------------------------------------------------------------------------------- /backend/games/BR1/missions_br1/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/missions_br1/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BR1/missions_br1/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BR1/missions_br1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/missions_br1/models.py -------------------------------------------------------------------------------- /backend/games/BR1/missions_br1/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/missions_br1/serializers.py -------------------------------------------------------------------------------- /backend/games/BR1/missions_br1/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/missions_br1/viewsets.py -------------------------------------------------------------------------------- /backend/games/BR1/skills_br1/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/skills_br1/apps.py -------------------------------------------------------------------------------- /backend/games/BR1/skills_br1/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/skills_br1/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BR1/skills_br1/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BR1/skills_br1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/skills_br1/models.py -------------------------------------------------------------------------------- /backend/games/BR1/skills_br1/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/skills_br1/serializers.py -------------------------------------------------------------------------------- /backend/games/BR1/skills_br1/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/skills_br1/viewsets.py -------------------------------------------------------------------------------- /backend/games/BR1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BR1/urls.py -------------------------------------------------------------------------------- /backend/games/BRSL/demons_brsl/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/demons_brsl/apps.py -------------------------------------------------------------------------------- /backend/games/BRSL/demons_brsl/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/demons_brsl/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BRSL/demons_brsl/migrations/0002_demon_isdlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/demons_brsl/migrations/0002_demon_isdlc.py -------------------------------------------------------------------------------- /backend/games/BRSL/demons_brsl/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BRSL/demons_brsl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/demons_brsl/models.py -------------------------------------------------------------------------------- /backend/games/BRSL/demons_brsl/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/demons_brsl/serializers.py -------------------------------------------------------------------------------- /backend/games/BRSL/demons_brsl/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/demons_brsl/viewsets.py -------------------------------------------------------------------------------- /backend/games/BRSL/facilities_brsl/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/facilities_brsl/apps.py -------------------------------------------------------------------------------- /backend/games/BRSL/facilities_brsl/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/facilities_brsl/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BRSL/facilities_brsl/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BRSL/facilities_brsl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/facilities_brsl/models.py -------------------------------------------------------------------------------- /backend/games/BRSL/facilities_brsl/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/facilities_brsl/serializers.py -------------------------------------------------------------------------------- /backend/games/BRSL/facilities_brsl/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/facilities_brsl/viewsets.py -------------------------------------------------------------------------------- /backend/games/BRSL/fragments_brsl/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/fragments_brsl/apps.py -------------------------------------------------------------------------------- /backend/games/BRSL/fragments_brsl/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/fragments_brsl/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BRSL/fragments_brsl/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BRSL/fragments_brsl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/fragments_brsl/models.py -------------------------------------------------------------------------------- /backend/games/BRSL/fragments_brsl/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/fragments_brsl/serializers.py -------------------------------------------------------------------------------- /backend/games/BRSL/fragments_brsl/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/fragments_brsl/viewsets.py -------------------------------------------------------------------------------- /backend/games/BRSL/items_brsl/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/items_brsl/apps.py -------------------------------------------------------------------------------- /backend/games/BRSL/items_brsl/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/items_brsl/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BRSL/items_brsl/migrations/0003_alter_item_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/items_brsl/migrations/0003_alter_item_char.py -------------------------------------------------------------------------------- /backend/games/BRSL/items_brsl/migrations/0008_skillline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/items_brsl/migrations/0008_skillline.py -------------------------------------------------------------------------------- /backend/games/BRSL/items_brsl/migrations/0010_effdata_effline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/items_brsl/migrations/0010_effdata_effline.py -------------------------------------------------------------------------------- /backend/games/BRSL/items_brsl/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BRSL/items_brsl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/items_brsl/models.py -------------------------------------------------------------------------------- /backend/games/BRSL/items_brsl/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/items_brsl/serializers.py -------------------------------------------------------------------------------- /backend/games/BRSL/items_brsl/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/items_brsl/viewsets.py -------------------------------------------------------------------------------- /backend/games/BRSL/regions_brsl/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/regions_brsl/apps.py -------------------------------------------------------------------------------- /backend/games/BRSL/regions_brsl/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/regions_brsl/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BRSL/regions_brsl/migrations/0003_alter_area_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/regions_brsl/migrations/0003_alter_area_map.py -------------------------------------------------------------------------------- /backend/games/BRSL/regions_brsl/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BRSL/regions_brsl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/regions_brsl/models.py -------------------------------------------------------------------------------- /backend/games/BRSL/regions_brsl/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/regions_brsl/serializers.py -------------------------------------------------------------------------------- /backend/games/BRSL/regions_brsl/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/regions_brsl/viewsets.py -------------------------------------------------------------------------------- /backend/games/BRSL/skills_brsl/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/skills_brsl/apps.py -------------------------------------------------------------------------------- /backend/games/BRSL/skills_brsl/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/skills_brsl/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/games/BRSL/skills_brsl/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/BRSL/skills_brsl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/skills_brsl/models.py -------------------------------------------------------------------------------- /backend/games/BRSL/skills_brsl/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/skills_brsl/serializers.py -------------------------------------------------------------------------------- /backend/games/BRSL/skills_brsl/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/skills_brsl/viewsets.py -------------------------------------------------------------------------------- /backend/games/BRSL/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/BRSL/urls.py -------------------------------------------------------------------------------- /backend/games/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/games/_helpers/common_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/_helpers/common_fields.py -------------------------------------------------------------------------------- /backend/games/_helpers/serializer_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/_helpers/serializer_helper.py -------------------------------------------------------------------------------- /backend/games/_helpers/viewset_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/games/_helpers/viewset_helper.py -------------------------------------------------------------------------------- /backend/invite/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/invite/apps.py -------------------------------------------------------------------------------- /backend/invite/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/invite/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/invite/migrations/0002_auto_20210323_1432.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/invite/migrations/0002_auto_20210323_1432.py -------------------------------------------------------------------------------- /backend/invite/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/invite/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/invite/models.py -------------------------------------------------------------------------------- /backend/invite/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/invite/serializers.py -------------------------------------------------------------------------------- /backend/invite/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/invite/viewsets.py -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/navigation/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/navigation/apps.py -------------------------------------------------------------------------------- /backend/navigation/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/navigation/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/navigation/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/navigation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/navigation/models.py -------------------------------------------------------------------------------- /backend/navigation/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/navigation/serializers.py -------------------------------------------------------------------------------- /backend/navigation/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/navigation/viewsets.py -------------------------------------------------------------------------------- /backend/report/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/report/apps.py -------------------------------------------------------------------------------- /backend/report/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/report/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/report/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/report/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/report/models.py -------------------------------------------------------------------------------- /backend/report/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/report/serializers.py -------------------------------------------------------------------------------- /backend/report/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/report/viewsets.py -------------------------------------------------------------------------------- /backend/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/requirements.in -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /backend/run_django.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/run_django.sh -------------------------------------------------------------------------------- /backend/scripts/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/categories.py -------------------------------------------------------------------------------- /backend/scripts/frontend_tests/test_a12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/frontend_tests/test_a12.py -------------------------------------------------------------------------------- /backend/scripts/frontend_tests/test_a15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/frontend_tests/test_a15.py -------------------------------------------------------------------------------- /backend/scripts/frontend_tests/test_a16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/frontend_tests/test_a16.py -------------------------------------------------------------------------------- /backend/scripts/frontend_tests/test_a26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/frontend_tests/test_a26.py -------------------------------------------------------------------------------- /backend/scripts/import_a12_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_a12_csv.py -------------------------------------------------------------------------------- /backend/scripts/import_a15_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_a15_csv.py -------------------------------------------------------------------------------- /backend/scripts/import_a16_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_a16_csv.py -------------------------------------------------------------------------------- /backend/scripts/import_a18_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_a18_csv.py -------------------------------------------------------------------------------- /backend/scripts/import_a21_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_a21_csv.py -------------------------------------------------------------------------------- /backend/scripts/import_a22_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_a22_csv.py -------------------------------------------------------------------------------- /backend/scripts/import_a23_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_a23_csv.py -------------------------------------------------------------------------------- /backend/scripts/import_a25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_a25.py -------------------------------------------------------------------------------- /backend/scripts/import_a25rw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_a25rw.py -------------------------------------------------------------------------------- /backend/scripts/import_a26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_a26.py -------------------------------------------------------------------------------- /backend/scripts/import_br1_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_br1_csv.py -------------------------------------------------------------------------------- /backend/scripts/import_brsl_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/import_brsl_csv.py -------------------------------------------------------------------------------- /backend/scripts/sitemap_list_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/sitemap_list_generator.py -------------------------------------------------------------------------------- /backend/scripts/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/scripts/util.py -------------------------------------------------------------------------------- /backend/userprofile/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/userprofile/apps.py -------------------------------------------------------------------------------- /backend/userprofile/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/userprofile/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/userprofile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/userprofile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/userprofile/models.py -------------------------------------------------------------------------------- /backend/userprofile/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/userprofile/serializers.py -------------------------------------------------------------------------------- /backend/userprofile/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/backend/userprofile/viewsets.py -------------------------------------------------------------------------------- /docker/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ -------------------------------------------------------------------------------- /docker/Dockerfile.angular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/docker/Dockerfile.angular -------------------------------------------------------------------------------- /docker/Dockerfile.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/docker/Dockerfile.django -------------------------------------------------------------------------------- /docker/Dockerfile.nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/docker/Dockerfile.nginx -------------------------------------------------------------------------------- /docker/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/docker/default.conf -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/.eslintrc.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/Dockerfile.prod -------------------------------------------------------------------------------- /frontend/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/angular.json -------------------------------------------------------------------------------- /frontend/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/browserslist -------------------------------------------------------------------------------- /frontend/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/ngsw-config.json -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/prerender.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/prerender.txt -------------------------------------------------------------------------------- /frontend/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/proxy.conf.json -------------------------------------------------------------------------------- /frontend/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/server.ts -------------------------------------------------------------------------------- /frontend/src/app/_helpers/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/_helpers/auth.guard.ts -------------------------------------------------------------------------------- /frontend/src/app/_helpers/interceptor/http-error.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/_helpers/interceptor/http-error.interceptor.ts -------------------------------------------------------------------------------- /frontend/src/app/_helpers/interceptor/http.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/_helpers/interceptor/http.interceptor.ts -------------------------------------------------------------------------------- /frontend/src/app/_helpers/interceptor/jwt_interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/_helpers/interceptor/jwt_interceptor.ts -------------------------------------------------------------------------------- /frontend/src/app/_helpers/language.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/_helpers/language.guard.ts -------------------------------------------------------------------------------- /frontend/src/app/_helpers/local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/_helpers/local-storage.ts -------------------------------------------------------------------------------- /frontend/src/app/_helpers/pipes/pair.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/_helpers/pipes/pair.pipe.ts -------------------------------------------------------------------------------- /frontend/src/app/_helpers/pipes/pipes.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/_helpers/pipes/pipes.module.ts -------------------------------------------------------------------------------- /frontend/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/app.component.ts -------------------------------------------------------------------------------- /frontend/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/app.module.ts -------------------------------------------------------------------------------- /frontend/src/app/app.server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/app.server.module.ts -------------------------------------------------------------------------------- /frontend/src/app/containers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './layout'; -------------------------------------------------------------------------------- /frontend/src/app/containers/layout/index.ts: -------------------------------------------------------------------------------- 1 | export * from './layout.component'; -------------------------------------------------------------------------------- /frontend/src/app/containers/layout/layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/containers/layout/layout.component.html -------------------------------------------------------------------------------- /frontend/src/app/containers/layout/layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/containers/layout/layout.component.ts -------------------------------------------------------------------------------- /frontend/src/app/services/authentication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/services/authentication.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/breadcrumb.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/services/breadcrumb.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/destroy.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/services/destroy.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/history.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/services/history.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/language.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/services/language.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/navigation.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/services/navigation.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/seo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/services/seo.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/_components/category/category.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/category/category.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/_components/cringe/cringe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/cringe/cringe.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/_components/effect/effect.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/effect/effect.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/_components/effect/effect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/effect/effect.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/_components/error/error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/error/error.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/_components/item/item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/item/item.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/_components/item/item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/item/item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/_components/popover/popover.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/popover/popover.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/_components/popover/popover.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/popover/popover.component.scss -------------------------------------------------------------------------------- /frontend/src/app/views/_components/popover/popover.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/popover/popover.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/_components/tooltip/tooltip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/tooltip/tooltip.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/_components/tooltip/tooltip.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/tooltip/tooltip.component.scss -------------------------------------------------------------------------------- /frontend/src/app/views/_components/tooltip/tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/_components/tooltip/tooltip.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/_services/a12.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/_services/a12.interface.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/_services/a12.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/_services/a12.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/a12-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/a12-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/book/a12-book.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/book/a12-book.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/book/a12-book.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/book/a12-book.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/book/a12-booklist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/book/a12-booklist.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/book/a12-booklist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/book/a12-booklist.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/effect/a12-effect.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/effect/a12-effect.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/effect/a12-effect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/effect/a12-effect.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/item/a12-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/item/a12-item.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/item/a12-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/item/a12-item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/item/a12-itemlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/item/a12-itemlist.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/item/a12-itemlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/item/a12-itemlist.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/monster/a12-monster.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/monster/a12-monster.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/trait/a12-trait.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/trait/a12-trait.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/trait/a12-trait.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/trait/a12-trait.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A12/trait/a12-traitlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A12/trait/a12-traitlist.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/_services/a15.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/_services/a15.interface.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/_services/a15.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/_services/a15.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/a15-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/a15-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/book/a15-book.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/book/a15-book.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/book/a15-book.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/book/a15-book.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/book/a15-booklist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/book/a15-booklist.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/book/a15-booklist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/book/a15-booklist.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/effect/a15-effect.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/effect/a15-effect.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/effect/a15-effect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/effect/a15-effect.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/item/a15-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/item/a15-item.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/item/a15-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/item/a15-item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/item/a15-itemlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/item/a15-itemlist.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/item/a15-itemlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/item/a15-itemlist.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A15/monster/a15-monster.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A15/monster/a15-monster.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/_services/a16.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/_services/a16.interface.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/_services/a16.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/_services/a16.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/a16-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/a16-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/book/a16-book.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/book/a16-book.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/book/a16-book.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/book/a16-book.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/book/a16-booklist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/book/a16-booklist.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/book/a16-booklist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/book/a16-booklist.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/effect/a16-effect.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/effect/a16-effect.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/effect/a16-effect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/effect/a16-effect.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/item/a16-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/item/a16-item.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/item/a16-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/item/a16-item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/item/a16-itemlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/item/a16-itemlist.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/item/a16-itemlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/item/a16-itemlist.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A16/monster/a16-monster.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A16/monster/a16-monster.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/_services/a18.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/_services/a18.interface.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/_services/a18.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/_services/a18.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/a18-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/a18-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/effect/a18-effect.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/effect/a18-effect.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/effect/a18-effect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/effect/a18-effect.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/item/a18-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/item/a18-item.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/item/a18-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/item/a18-item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/item/a18-itemlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/item/a18-itemlist.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/item/a18-itemlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/item/a18-itemlist.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/monster/a18-monster.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/monster/a18-monster.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/shop/a18-shop.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/shop/a18-shop.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/shop/a18-shop.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/shop/a18-shop.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A18/trait/a18-trait.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A18/trait/a18-trait.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A22/_services/a22.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A22/_services/a22.interface.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A22/_services/a22.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A22/_services/a22.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A22/a22-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A22/a22-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A22/item/a22-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A22/item/a22-item.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A22/item/a22-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A22/item/a22-item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A22/trait/a22-trait.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A22/trait/a22-trait.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A23/_services/a23.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A23/_services/a23.interface.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A23/_services/a23.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A23/_services/a23.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A23/a23-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A23/a23-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A23/item/a23-book.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A23/item/a23-book.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A23/item/a23-book.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A23/item/a23-book.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A23/item/a23-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A23/item/a23-item.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A23/item/a23-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A23/item/a23-item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A23/seed/a23-seed.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A23/seed/a23-seed.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A23/seed/a23-seed.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A23/seed/a23-seed.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A23/trait/a23-trait.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A23/trait/a23-trait.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/_services/a25.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/_services/a25.interface.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/_services/a25.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/_services/a25.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/a25-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/a25-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/item/a25-icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/item/a25-icon.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/item/a25-icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/item/a25-icon.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/item/a25-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/item/a25-item.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/item/a25-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/item/a25-item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/item/a25-recipe.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/item/a25-recipe.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/quest/a25-tower.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/quest/a25-tower.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/resleri.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/resleri.scss -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25/trait/a25-trait.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25/trait/a25-trait.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25RW/_services/a25rw.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25RW/_services/a25rw.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A25RW/a25rw-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A25RW/a25rw-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A26/_services/a26.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A26/_services/a26.interface.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A26/_services/a26.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A26/_services/a26.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A26/a26-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A26/a26-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A26/item/a26-item-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A26/item/a26-item-icons.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A26/item/a26-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A26/item/a26-item.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/A26/item/a26-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A26/item/a26-item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A26/map/a26-map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A26/map/a26-map.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A26/trait/a26-trait.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A26/trait/a26-trait.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/A26/yumia.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/A26/yumia.scss -------------------------------------------------------------------------------- /frontend/src/app/views/games/BR1/_services/br1.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BR1/_services/br1.interface.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/BR1/_services/br1.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BR1/_services/br1.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/BR1/br1-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BR1/br1-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/BR1/demon/br1-demon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BR1/demon/br1-demon.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/BR1/item/br1-item.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BR1/item/br1-item.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/games/BR1/item/br1-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BR1/item/br1-item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/BRSL/_services/brsl.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BRSL/_services/brsl.interface.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/BRSL/_services/brsl.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BRSL/_services/brsl.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/BRSL/brsl-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BRSL/brsl-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/BRSL/item/brsl-item.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BRSL/item/brsl-item.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/BRSL/unit/brsl-unit.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/BRSL/unit/brsl-unit.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/_prototype/data.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/_prototype/data.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/_prototype/single.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/_prototype/single.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/games/_scss/dusk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/games/_scss/dusk.scss -------------------------------------------------------------------------------- /frontend/src/app/views/main/_interfaces/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/_interfaces/blog.ts -------------------------------------------------------------------------------- /frontend/src/app/views/main/_interfaces/section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/_interfaces/section.ts -------------------------------------------------------------------------------- /frontend/src/app/views/main/_interfaces/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/_interfaces/user.ts -------------------------------------------------------------------------------- /frontend/src/app/views/main/_services/blog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/_services/blog.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/main/_services/errorcode.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/_services/errorcode.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/main/_services/setting.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/_services/setting.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/main/_services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/_services/user.service.ts -------------------------------------------------------------------------------- /frontend/src/app/views/main/blog/blog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/blog/blog.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/main/blog/blog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/blog/blog.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/main/blog/blog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/blog/blog.scss -------------------------------------------------------------------------------- /frontend/src/app/views/main/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/home/home.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/main/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/home/home.component.ts -------------------------------------------------------------------------------- /frontend/src/app/views/main/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/home/home.scss -------------------------------------------------------------------------------- /frontend/src/app/views/main/user-facing/user-facing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/user-facing/user-facing.scss -------------------------------------------------------------------------------- /frontend/src/app/views/main/user/user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/user/user.component.html -------------------------------------------------------------------------------- /frontend/src/app/views/main/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/app/views/main/user/user.component.ts -------------------------------------------------------------------------------- /frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /frontend/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/environments/environment.ts -------------------------------------------------------------------------------- /frontend/src/environments/language-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/environments/language-data.ts -------------------------------------------------------------------------------- /frontend/src/environments/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/environments/localization.ts -------------------------------------------------------------------------------- /frontend/src/express.tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/express.tokens.ts -------------------------------------------------------------------------------- /frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/index.html -------------------------------------------------------------------------------- /frontend/src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/main.server.ts -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/main.ts -------------------------------------------------------------------------------- /frontend/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/polyfills.ts -------------------------------------------------------------------------------- /frontend/src/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/robots.txt -------------------------------------------------------------------------------- /frontend/src/scss/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/_custom.scss -------------------------------------------------------------------------------- /frontend/src/scss/_material.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/_material.scss -------------------------------------------------------------------------------- /frontend/src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/_variables.scss -------------------------------------------------------------------------------- /frontend/src/scss/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/icons.scss -------------------------------------------------------------------------------- /frontend/src/scss/specific/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/specific/_badge.scss -------------------------------------------------------------------------------- /frontend/src/scss/specific/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/specific/_breadcrumb.scss -------------------------------------------------------------------------------- /frontend/src/scss/specific/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/specific/_card.scss -------------------------------------------------------------------------------- /frontend/src/scss/specific/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/specific/_grid.scss -------------------------------------------------------------------------------- /frontend/src/scss/specific/_material-fix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/specific/_material-fix.scss -------------------------------------------------------------------------------- /frontend/src/scss/specific/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/specific/_navigation.scss -------------------------------------------------------------------------------- /frontend/src/scss/specific/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/specific/_table.scss -------------------------------------------------------------------------------- /frontend/src/scss/specific/_tag.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/specific/_tag.scss -------------------------------------------------------------------------------- /frontend/src/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/style.scss -------------------------------------------------------------------------------- /frontend/src/scss/vendors/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/src/scss/vendors/_variables.scss -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CatClawed/barrelwisdom/HEAD/frontend/tsconfig.spec.json --------------------------------------------------------------------------------