├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── local-files ├── gakumasassets ├── gkamsZHFontMIX.otf ├── masterTrans │ ├── Achievement.json │ ├── Bgm.json │ ├── Character.json │ ├── CharacterAdv.json │ ├── CharacterDearnessLevel.json │ ├── CharacterDetail.json │ ├── CharacterPushMessage.json │ ├── CoinGashaButton.json │ ├── ConditionSet.json │ ├── Costume.json │ ├── CostumeHead.json │ ├── EffectGroup.json │ ├── EventLabel.json │ ├── ExchangeItemCategory.json │ ├── FeatureLock.json │ ├── GashaButton.json │ ├── GvgRaid.json │ ├── HelpCategory.json │ ├── HelpContent.json │ ├── IdolCard.json │ ├── IdolCardSkin.json │ ├── Item.json │ ├── Localization.json │ ├── MainStoryChapter.json │ ├── MainStoryPart.json │ ├── MainTask.json │ ├── MainTaskGroup.json │ ├── Media.json │ ├── MeishiBaseAsset.json │ ├── MeishiIllustrationAsset.json │ ├── MemoryGift.json │ ├── MemoryTag.json │ ├── Mission.json │ ├── MissionDailyReleaseGroup.json │ ├── MissionGroup.json │ ├── MissionPanelSheet.json │ ├── MissionPanelSheetGroup.json │ ├── MissionPass.json │ ├── MissionPassPoint.json │ ├── MissionPoint.json │ ├── Music.json │ ├── PhotoBackground.json │ ├── PhotoFacialMotionGroup.json │ ├── PhotoPose.json │ ├── Produce.json │ ├── ProduceAdv.json │ ├── ProduceCard.json │ ├── ProduceCardCustomize.json │ ├── ProduceCardSearch.json │ ├── ProduceCardStatusEnchant.json │ ├── ProduceCardTag.json │ ├── ProduceChallengeSlot.json │ ├── ProduceCharacterAdv.json │ ├── ProduceDescription.json │ ├── ProduceDescriptionExamEffect.json │ ├── ProduceDescriptionLabel.json │ ├── ProduceDescriptionProduceCardGrowEffect.json │ ├── ProduceDescriptionProduceCardGrowEffectType.json │ ├── ProduceDescriptionProduceEffect.json │ ├── ProduceDescriptionProduceEffectType.json │ ├── ProduceDescriptionProduceExamEffectType.json │ ├── ProduceDescriptionProducePlan.json │ ├── ProduceDescriptionProducePlanType.json │ ├── ProduceDescriptionProduceStep.json │ ├── ProduceDescriptionSwap.json │ ├── ProduceDrink.json │ ├── ProduceEventCharacterGrowth.json │ ├── ProduceExamBattleNpcMob.json │ ├── ProduceExamEffect.json │ ├── ProduceExamGimmickEffectGroup.json │ ├── ProduceExamStatusEnchant.json │ ├── ProduceExamTrigger.json │ ├── ProduceGroup.json │ ├── ProduceGuideProduceCardCategory.json │ ├── ProduceGuideProduceCardCategoryGroup.json │ ├── ProduceGuideProduceCardSampleDeckCategory.json │ ├── ProduceHighScore.json │ ├── ProduceItem.json │ ├── ProduceNavigation.json │ ├── ProduceSeason.json │ ├── ProduceSkill.json │ ├── ProduceStepEventDetail.json │ ├── ProduceStepEventSuggestion.json │ ├── ProduceStepLesson.json │ ├── ProduceStory.json │ ├── ProducerRanking.json │ ├── PvpRateConfig.json │ ├── Rule.json │ ├── SeminarExamTransition.json │ ├── Setting.json │ ├── Shop.json │ ├── ShopItem.json │ ├── ShopProduct.json │ ├── Story.json │ ├── StoryEvent.json │ ├── StoryGroup.json │ ├── SupportCard.json │ ├── SupportCardFlavor.json │ ├── SupportCardProduceSkillFilter.json │ ├── Terms.json │ ├── Tips.json │ ├── Tower.json │ ├── Tutorial.json │ ├── TutorialProduceStep.json │ ├── VoiceGroup.json │ ├── VoiceRoster.json │ └── Work.json └── resource │ └── adv_dear_fktn_001.txt ├── merge.py ├── merge_utils.py ├── requirements.txt ├── update_submodule.bat └── version.txt /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/README.md -------------------------------------------------------------------------------- /local-files/gakumasassets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/gakumasassets -------------------------------------------------------------------------------- /local-files/gkamsZHFontMIX.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/gkamsZHFontMIX.otf -------------------------------------------------------------------------------- /local-files/masterTrans/Achievement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Achievement.json -------------------------------------------------------------------------------- /local-files/masterTrans/Bgm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Bgm.json -------------------------------------------------------------------------------- /local-files/masterTrans/Character.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Character.json -------------------------------------------------------------------------------- /local-files/masterTrans/CharacterAdv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/CharacterAdv.json -------------------------------------------------------------------------------- /local-files/masterTrans/CharacterDearnessLevel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/CharacterDearnessLevel.json -------------------------------------------------------------------------------- /local-files/masterTrans/CharacterDetail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/CharacterDetail.json -------------------------------------------------------------------------------- /local-files/masterTrans/CharacterPushMessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/CharacterPushMessage.json -------------------------------------------------------------------------------- /local-files/masterTrans/CoinGashaButton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/CoinGashaButton.json -------------------------------------------------------------------------------- /local-files/masterTrans/ConditionSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ConditionSet.json -------------------------------------------------------------------------------- /local-files/masterTrans/Costume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Costume.json -------------------------------------------------------------------------------- /local-files/masterTrans/CostumeHead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/CostumeHead.json -------------------------------------------------------------------------------- /local-files/masterTrans/EffectGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/EffectGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/EventLabel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/EventLabel.json -------------------------------------------------------------------------------- /local-files/masterTrans/ExchangeItemCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ExchangeItemCategory.json -------------------------------------------------------------------------------- /local-files/masterTrans/FeatureLock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/FeatureLock.json -------------------------------------------------------------------------------- /local-files/masterTrans/GashaButton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/GashaButton.json -------------------------------------------------------------------------------- /local-files/masterTrans/GvgRaid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/GvgRaid.json -------------------------------------------------------------------------------- /local-files/masterTrans/HelpCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/HelpCategory.json -------------------------------------------------------------------------------- /local-files/masterTrans/HelpContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/HelpContent.json -------------------------------------------------------------------------------- /local-files/masterTrans/IdolCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/IdolCard.json -------------------------------------------------------------------------------- /local-files/masterTrans/IdolCardSkin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/IdolCardSkin.json -------------------------------------------------------------------------------- /local-files/masterTrans/Item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Item.json -------------------------------------------------------------------------------- /local-files/masterTrans/Localization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Localization.json -------------------------------------------------------------------------------- /local-files/masterTrans/MainStoryChapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MainStoryChapter.json -------------------------------------------------------------------------------- /local-files/masterTrans/MainStoryPart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MainStoryPart.json -------------------------------------------------------------------------------- /local-files/masterTrans/MainTask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MainTask.json -------------------------------------------------------------------------------- /local-files/masterTrans/MainTaskGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MainTaskGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/Media.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Media.json -------------------------------------------------------------------------------- /local-files/masterTrans/MeishiBaseAsset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MeishiBaseAsset.json -------------------------------------------------------------------------------- /local-files/masterTrans/MeishiIllustrationAsset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MeishiIllustrationAsset.json -------------------------------------------------------------------------------- /local-files/masterTrans/MemoryGift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MemoryGift.json -------------------------------------------------------------------------------- /local-files/masterTrans/MemoryTag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MemoryTag.json -------------------------------------------------------------------------------- /local-files/masterTrans/Mission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Mission.json -------------------------------------------------------------------------------- /local-files/masterTrans/MissionDailyReleaseGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MissionDailyReleaseGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/MissionGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MissionGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/MissionPanelSheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MissionPanelSheet.json -------------------------------------------------------------------------------- /local-files/masterTrans/MissionPanelSheetGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MissionPanelSheetGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/MissionPass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MissionPass.json -------------------------------------------------------------------------------- /local-files/masterTrans/MissionPassPoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MissionPassPoint.json -------------------------------------------------------------------------------- /local-files/masterTrans/MissionPoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/MissionPoint.json -------------------------------------------------------------------------------- /local-files/masterTrans/Music.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Music.json -------------------------------------------------------------------------------- /local-files/masterTrans/PhotoBackground.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/PhotoBackground.json -------------------------------------------------------------------------------- /local-files/masterTrans/PhotoFacialMotionGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/PhotoFacialMotionGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/PhotoPose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/PhotoPose.json -------------------------------------------------------------------------------- /local-files/masterTrans/Produce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Produce.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceAdv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceAdv.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceCard.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceCardCustomize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceCardCustomize.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceCardSearch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceCardSearch.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceCardStatusEnchant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceCardStatusEnchant.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceCardTag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceCardTag.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceChallengeSlot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceChallengeSlot.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceCharacterAdv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceCharacterAdv.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescription.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionExamEffect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionExamEffect.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionLabel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionLabel.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionProduceCardGrowEffect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionProduceCardGrowEffect.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionProduceCardGrowEffectType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionProduceCardGrowEffectType.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionProduceEffect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionProduceEffect.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionProduceEffectType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionProduceEffectType.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionProduceExamEffectType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionProduceExamEffectType.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionProducePlan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionProducePlan.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionProducePlanType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionProducePlanType.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionProduceStep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionProduceStep.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDescriptionSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDescriptionSwap.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceDrink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceDrink.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceEventCharacterGrowth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceEventCharacterGrowth.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceExamBattleNpcMob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceExamBattleNpcMob.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceExamEffect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceExamEffect.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceExamGimmickEffectGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceExamGimmickEffectGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceExamStatusEnchant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceExamStatusEnchant.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceExamTrigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceExamTrigger.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceGuideProduceCardCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceGuideProduceCardCategory.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceGuideProduceCardCategoryGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceGuideProduceCardCategoryGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceGuideProduceCardSampleDeckCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceGuideProduceCardSampleDeckCategory.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceHighScore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceHighScore.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceItem.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceNavigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceNavigation.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceSeason.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceSeason.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceSkill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceSkill.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceStepEventDetail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceStepEventDetail.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceStepEventSuggestion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceStepEventSuggestion.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceStepLesson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceStepLesson.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProduceStory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProduceStory.json -------------------------------------------------------------------------------- /local-files/masterTrans/ProducerRanking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ProducerRanking.json -------------------------------------------------------------------------------- /local-files/masterTrans/PvpRateConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/PvpRateConfig.json -------------------------------------------------------------------------------- /local-files/masterTrans/Rule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Rule.json -------------------------------------------------------------------------------- /local-files/masterTrans/SeminarExamTransition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/SeminarExamTransition.json -------------------------------------------------------------------------------- /local-files/masterTrans/Setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Setting.json -------------------------------------------------------------------------------- /local-files/masterTrans/Shop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Shop.json -------------------------------------------------------------------------------- /local-files/masterTrans/ShopItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ShopItem.json -------------------------------------------------------------------------------- /local-files/masterTrans/ShopProduct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/ShopProduct.json -------------------------------------------------------------------------------- /local-files/masterTrans/Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Story.json -------------------------------------------------------------------------------- /local-files/masterTrans/StoryEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/StoryEvent.json -------------------------------------------------------------------------------- /local-files/masterTrans/StoryGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/StoryGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/SupportCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/SupportCard.json -------------------------------------------------------------------------------- /local-files/masterTrans/SupportCardFlavor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/SupportCardFlavor.json -------------------------------------------------------------------------------- /local-files/masterTrans/SupportCardProduceSkillFilter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/SupportCardProduceSkillFilter.json -------------------------------------------------------------------------------- /local-files/masterTrans/Terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Terms.json -------------------------------------------------------------------------------- /local-files/masterTrans/Tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Tips.json -------------------------------------------------------------------------------- /local-files/masterTrans/Tower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Tower.json -------------------------------------------------------------------------------- /local-files/masterTrans/Tutorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Tutorial.json -------------------------------------------------------------------------------- /local-files/masterTrans/TutorialProduceStep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/TutorialProduceStep.json -------------------------------------------------------------------------------- /local-files/masterTrans/VoiceGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/VoiceGroup.json -------------------------------------------------------------------------------- /local-files/masterTrans/VoiceRoster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/VoiceRoster.json -------------------------------------------------------------------------------- /local-files/masterTrans/Work.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/masterTrans/Work.json -------------------------------------------------------------------------------- /local-files/resource/adv_dear_fktn_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/local-files/resource/adv_dear_fktn_001.txt -------------------------------------------------------------------------------- /merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/merge.py -------------------------------------------------------------------------------- /merge_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/merge_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | imas-tools>=0.4.7 -------------------------------------------------------------------------------- /update_submodule.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinosk6/GakumasTranslationData/HEAD/update_submodule.bat -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | v2.1.20 2 | --------------------------------------------------------------------------------