├── .gitignore ├── Entrance.py ├── FFxivPythonTrigger ├── AddressManager.py ├── AttrContainer.py ├── CheckGitUpdate.py ├── FFxivPythonTrigger.py ├── FrameInject.py ├── Logger.py ├── MacroParser.py ├── QT.py ├── SaintCoinach.py ├── Sigs.py ├── Socket.py ├── SpecialChar.py ├── Storage.py ├── Structure.py ├── Utils.py ├── __init__.py ├── hook │ ├── EasyHook.py │ ├── __init__.py │ └── res │ │ ├── EasyHook64.dll │ │ └── LICENSE ├── memory │ ├── StructFactory.py │ ├── __init__.py │ ├── exception.py │ ├── memory.py │ ├── pattern.py │ ├── process.py │ └── res │ │ ├── __init__.py │ │ ├── advapi32.py │ │ ├── kernel32.py │ │ ├── ntdll.py │ │ ├── psapi.py │ │ └── structure.py ├── readme.md ├── requirements_controller.py └── window │ └── __init__.py ├── Injecter.py ├── LICENSE.txt ├── Terminal.py ├── plugins ├── ACTLogLines │ ├── __init__.py │ └── readme.md ├── ActorQuery │ ├── __init__.py │ └── readme.md ├── ChatLog2 │ ├── ChatLog.py │ ├── GetInteger.py │ ├── Keys.py │ ├── Messages.py │ └── __init__.py ├── CombatMonitor │ ├── DbCreator.py │ ├── Definition.py │ ├── __init__.py │ └── dist │ │ ├── css │ │ └── chunk-vendors.55204a1e.css │ │ ├── index.html │ │ └── js │ │ ├── app.a60bb28d.js │ │ ├── app.a60bb28d.js.map │ │ ├── chunk-vendors.453b7717.js │ │ └── chunk-vendors.453b7717.js.map ├── Command │ ├── __init__.py │ └── readme.md ├── HttpApi │ ├── __init__.py │ └── readme.md ├── Markings │ ├── __init__.py │ └── readme.md ├── MoPlus │ ├── __init__.py │ └── readme.md ├── PartySkillMsg │ ├── __init__.py │ └── data.json ├── PartyTroubleMaker │ ├── Define.py │ ├── __init__.py │ ├── datas │ │ ├── E11s.py │ │ ├── UltimateWeapon.py │ │ └── __init__.py │ └── readme.md ├── RockJail.py ├── SendKeys │ ├── __init__.py │ └── readme.md ├── SocketLogger │ ├── __init__.py │ └── readme.md ├── WebChat │ ├── __init__.py │ └── res │ │ ├── css │ │ ├── app.a5b2a428.css │ │ ├── chunk-6eac0c83.63b746ac.css │ │ ├── chunk-8ef694b6.d6e5f7f3.css │ │ └── chunk-vendors.37807362.css │ │ ├── favicon.ico │ │ ├── fonts │ │ └── FFXIV_Lodestone_SSF.559f0ed9.ttf │ │ ├── img │ │ └── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ └── favicon-32x32.png │ │ ├── index.html │ │ ├── js │ │ ├── app.dabfbb02.js │ │ ├── app.dabfbb02.js.map │ │ ├── chunk-2891d78e.915a2d96.js │ │ ├── chunk-2891d78e.915a2d96.js.map │ │ ├── chunk-2d21a3d2.d7f21e07.js │ │ ├── chunk-2d21a3d2.d7f21e07.js.map │ │ ├── chunk-6eac0c83.751856fc.js │ │ ├── chunk-6eac0c83.751856fc.js.map │ │ ├── chunk-8ef694b6.e4544b3f.js │ │ ├── chunk-8ef694b6.e4544b3f.js.map │ │ ├── chunk-vendors.bd1c9606.js │ │ └── chunk-vendors.bd1c9606.js.map │ │ ├── manifest.json │ │ ├── precache-manifest.65588215ed2706da6a36739f788043f3.js │ │ ├── robots.txt │ │ └── service-worker.js ├── XivCraft │ ├── SkyBuilderTest.py │ ├── __init__.py │ ├── readme.md │ ├── simulator │ │ ├── Craft.py │ │ ├── Effects.py │ │ ├── Manager.py │ │ ├── Models.py │ │ ├── Skill.py │ │ ├── Status.py │ │ └── __init__.py │ └── solvers │ │ ├── JustDoIt │ │ └── __init__.py │ │ ├── MacroCraft2 │ │ ├── __init__.py │ │ └── macros │ │ │ ├── 430成品.macro │ │ │ ├── 480半成品.macro │ │ │ ├── 480成品.macro │ │ │ ├── 490半成品.macro │ │ │ ├── 490成品.macro │ │ │ ├── 510半成品.macro │ │ │ ├── 510富婆衣.macro │ │ │ ├── 510成品专家垫3831.macro │ │ │ ├── 510成品非专垫11600.macro │ │ │ ├── 71半成品.macro │ │ │ ├── 72成品.macro │ │ │ ├── 78成品.macro │ │ │ └── 暴力半成品.macro.disable │ │ ├── SkyBuilders │ │ ├── Stage1_s23.py │ │ ├── Stage1_s4.py │ │ ├── Stage1_s4_v2.py │ │ ├── Stage1_s4_v3.py │ │ ├── Stage1_ultra.py │ │ ├── Stage2_s23.py │ │ ├── Stage2_s4.py │ │ ├── Stage3_Astar.py │ │ ├── Stage3_Bfs.py │ │ └── __init__.py │ │ └── __init__.py ├── XivMagic │ ├── AddressManager.py │ ├── DoAction.py │ ├── DoTextCommand.py │ ├── __init__.py │ └── readme.md ├── XivMemory │ ├── ActorTable.py │ ├── AddressManager.py │ ├── CombatData.py │ ├── Inventory.py │ ├── Movement.py │ ├── Party.py │ ├── PlayerInfo.py │ ├── Targets.py │ ├── __init__.py │ ├── readme.md │ └── struct │ │ ├── Actor.py │ │ ├── Combat.py │ │ ├── Enum.py │ │ ├── Inventory.py │ │ ├── JobGauge.py │ │ ├── Movement.py │ │ ├── Party.py │ │ ├── Player.py │ │ ├── Target.py │ │ └── __init__.py └── XivNetwork │ ├── BundleDecoder.py │ ├── CombatReset.py │ ├── FindAddr2.py │ ├── RecvProcessors │ ├── Ability │ │ ├── Struct.py │ │ └── __init__.py │ ├── ActorCast.py │ ├── ActorControl142.py │ ├── ActorControl143.py │ ├── ActorControl144.py │ ├── ActorGauge.py │ ├── ActorUpdateHpMpTp.py │ ├── AddStatusEffect.py │ ├── ContainerInfo.py │ ├── CraftStatus.py │ ├── CurrencyCrystalInfo.py │ ├── EventFinish.py │ ├── EventPlay.py │ ├── EventStart.py │ ├── ItemInfo.py │ ├── MarketBoardItemListing.py │ ├── MarketBoardItemListingCount.py │ ├── MarketBoardItemListingHistory.py │ ├── Opcodes.py │ ├── Ping.py │ ├── RetainerInformation.py │ ├── StatusEffectList.py │ ├── UpdateInventorySlot.py │ ├── WardLandInfo.py │ └── __init__.py │ ├── SendProcessors │ ├── ActionSend.py │ ├── ClientTrigger.py │ ├── EventAction.py │ ├── EventFinish.py │ ├── EventStart.py │ ├── Opcodes.py │ ├── Ping.py │ ├── PositionAdjust.py │ ├── PositionSet.py │ └── __init__.py │ ├── Structs.py │ ├── __init__.py │ └── readme.md ├── pysaintcoinach ├── Definitions │ ├── AOZArrangement.json │ ├── AOZBoss.json │ ├── AOZContent.json │ ├── AOZContentBriefingBNpc.json │ ├── AOZReport.json │ ├── AOZScore.json │ ├── Achievement.json │ ├── AchievementCategory.json │ ├── AchievementHideCondition.json │ ├── AchievementKind.json │ ├── AchievementTarget.json │ ├── Action.json │ ├── ActionCastTimeline.json │ ├── ActionCastVFX.json │ ├── ActionCategory.json │ ├── ActionComboRoute.json │ ├── ActionIndirection.json │ ├── ActionParam.json │ ├── ActionProcStatus.json │ ├── ActionTimeline.json │ ├── ActionTimelineMove.json │ ├── ActionTimelineReplace.json │ ├── ActionTransient.json │ ├── ActivityFeedButtons.json │ ├── ActivityFeedCaptions.json │ ├── ActivityFeedGroupCaptions.json │ ├── ActivityFeedImages.json │ ├── Addon.json │ ├── Adventure.json │ ├── AdventureExPhase.json │ ├── AetherCurrent.json │ ├── AetherCurrentCompFlgSet.json │ ├── AetherialWheel.json │ ├── Aetheryte.json │ ├── AetheryteSystemDefine.json │ ├── AirshipExplorationLevel.json │ ├── AirshipExplorationLog.json │ ├── AirshipExplorationParamType.json │ ├── AirshipExplorationPart.json │ ├── AirshipExplorationPoint.json │ ├── AnimaWeapon5.json │ ├── AnimaWeapon5Param.json │ ├── AnimaWeapon5PatternGroup.json │ ├── AnimaWeapon5SpiritTalk.json │ ├── AnimaWeapon5SpiritTalkParam.json │ ├── AnimaWeapon5TradeItem.json │ ├── AnimaWeaponFUITalk.json │ ├── AnimaWeaponFUITalkParam.json │ ├── AnimaWeaponIcon.json │ ├── AnimaWeaponItem.json │ ├── AnimationLOD.json │ ├── AozAction.json │ ├── AozActionTransient.json │ ├── AquariumFish.json │ ├── AquariumWater.json │ ├── ArrayEventHandler.json │ ├── AttackType.json │ ├── BGM.json │ ├── BGMFade.json │ ├── BGMFadeType.json │ ├── BGMScene.json │ ├── BGMSituation.json │ ├── BGMSwitch.json │ ├── BGMSystemDefine.json │ ├── BNpcAnnounceIcon.json │ ├── BNpcBase.json │ ├── BNpcCustomize.json │ ├── BNpcName.json │ ├── BNpcParts.json │ ├── BNpcState.json │ ├── BacklightColor.json │ ├── Ballista.json │ ├── Balloon.json │ ├── BaseParam.json │ ├── BattleLeve.json │ ├── BattleLeveRule.json │ ├── BeastRankBonus.json │ ├── BeastReputationRank.json │ ├── BeastTribe.json │ ├── Behavior.json │ ├── BehaviorPath.json │ ├── BenchmarkOverrideEquipment.json │ ├── Buddy.json │ ├── BuddyAction.json │ ├── BuddyEquip.json │ ├── BuddyItem.json │ ├── BuddyRank.json │ ├── BuddySkill.json │ ├── Cabinet.json │ ├── CabinetCategory.json │ ├── Calendar.json │ ├── Carry.json │ ├── Channeling.json │ ├── CharaMakeClassEquip.json │ ├── CharaMakeCustomize.json │ ├── CharaMakeName.json │ ├── CharaMakeType.json │ ├── ChocoboRace.json │ ├── ChocoboRaceAbility.json │ ├── ChocoboRaceAbilityType.json │ ├── ChocoboRaceItem.json │ ├── ChocoboRaceRank.json │ ├── ChocoboRaceStatus.json │ ├── ChocoboRaceTerritory.json │ ├── ChocoboRaceTutorial.json │ ├── ChocoboRaceWeather.json │ ├── ChocoboTaxi.json │ ├── ChocoboTaxiStand.json │ ├── CircleActivity.json │ ├── ClassJob.json │ ├── ClassJobCategory.json │ ├── CollectablesShop.json │ ├── CollectablesShopItem.json │ ├── CollectablesShopItemGroup.json │ ├── CollectablesShopRefine.json │ ├── CollectablesShopRewardItem.json │ ├── CollectablesShopRewardScrip.json │ ├── Companion.json │ ├── CompanionMove.json │ ├── CompanionTransient.json │ ├── CompanyAction.json │ ├── CompanyCraftDraft.json │ ├── CompanyCraftDraftCategory.json │ ├── CompanyCraftManufactoryState.json │ ├── CompanyCraftPart.json │ ├── CompanyCraftProcess.json │ ├── CompanyCraftSequence.json │ ├── CompanyCraftSupplyItem.json │ ├── CompanyCraftType.json │ ├── CompanyLeve.json │ ├── CompanyLeveRule.json │ ├── CompleteJournal.json │ ├── CompleteJournalCategory.json │ ├── Completion.json │ ├── Condition.json │ ├── ConfigKey.json │ ├── ContentCloseCycle.json │ ├── ContentExAction.json │ ├── ContentFinderCondition.json │ ├── ContentFinderConditionTransient.json │ ├── ContentGauge.json │ ├── ContentGaugeColor.json │ ├── ContentMemberType.json │ ├── ContentNpcTalk.json │ ├── ContentRandomSelect.json │ ├── ContentRoulette.json │ ├── ContentRouletteOpenRule.json │ ├── ContentRouletteRoleBonus.json │ ├── ContentTalk.json │ ├── ContentTalkParam.json │ ├── ContentType.json │ ├── ContentsNote.json │ ├── ContentsTutorial.json │ ├── ContentsTutorialPage.json │ ├── CraftAction.json │ ├── CraftLeve.json │ ├── CraftLeveTalk.json │ ├── CraftLevelDifference.json │ ├── CraftType.json │ ├── Credit.json │ ├── CreditBackImage.json │ ├── CreditCast.json │ ├── CreditList.json │ ├── CreditListText.json │ ├── CustomTalk.json │ ├── CustomTalkNestHandlers.json │ ├── CutSceneIncompQuest.json │ ├── CutScreenImage.json │ ├── Cutscene.json │ ├── CutsceneMotion.json │ ├── CutsceneWorkIndex.json │ ├── CycleTime.json │ ├── DailySupplyItem.json │ ├── DawnContent.json │ ├── DawnGrowMember.json │ ├── DawnMemberUIParam.json │ ├── DawnQuestAnnounce.json │ ├── DawnQuestMember.json │ ├── DeepDungeon.json │ ├── DeepDungeonBan.json │ ├── DeepDungeonDanger.json │ ├── DeepDungeonEquipment.json │ ├── DeepDungeonFloorEffectUI.json │ ├── DeepDungeonItem.json │ ├── DeepDungeonLayer.json │ ├── DeepDungeonMagicStone.json │ ├── DeepDungeonMap5X.json │ ├── DeepDungeonRoom.json │ ├── DeepDungeonStatus.json │ ├── DefaultTalk.json │ ├── DefaultTalkLipSyncType.json │ ├── DeliveryQuest.json │ ├── Description.json │ ├── DescriptionPage.json │ ├── DescriptionSection.json │ ├── DescriptionString.json │ ├── DisposalShop.json │ ├── DisposalShopFilterType.json │ ├── DisposalShopItem.json │ ├── DpsChallenge.json │ ├── DpsChallengeOfficer.json │ ├── DpsChallengeTransient.json │ ├── DynamicEvent.json │ ├── DynamicEventEnemyType.json │ ├── DynamicEventSingleBattle.json │ ├── DynamicEventType.json │ ├── ENpcBase.json │ ├── ENpcDressUp.json │ ├── ENpcDressUpDress.json │ ├── ENpcResident.json │ ├── EObj.json │ ├── EObjName.json │ ├── EmjAddon.json │ ├── EmjDani.json │ ├── Emote.json │ ├── EmoteCategory.json │ ├── EmoteMode.json │ ├── EquipRaceCategory.json │ ├── EquipSlotCategory.json │ ├── EurekaAetherItem.json │ ├── EurekaAethernet.json │ ├── EurekaGrowData.json │ ├── EurekaLogosMixerProbability.json │ ├── EurekaMagiaAction.json │ ├── EurekaMagiciteItem.json │ ├── EurekaMagiciteItemType.json │ ├── EurekaSphereElementAdjust.json │ ├── EventAction.json │ ├── EventCustomIconType.json │ ├── EventIconPriority.json │ ├── EventIconType.json │ ├── EventItem.json │ ├── EventItemCastTimeline.json │ ├── EventItemHelp.json │ ├── EventItemTimeline.json │ ├── EventSystemDefine.json │ ├── ExVersion.json │ ├── ExportedGatheringPoint.json │ ├── ExportedSG.json │ ├── FCActivity.json │ ├── FCActivityCategory.json │ ├── FCAuthority.json │ ├── FCAuthorityCategory.json │ ├── FCChestName.json │ ├── FCCrestSymbol.json │ ├── FCHierarchy.json │ ├── FCProfile.json │ ├── FCRank.json │ ├── FCReputation.json │ ├── FCRights.json │ ├── Fate.json │ ├── FateEvent.json │ ├── FateMode.json │ ├── FateProgressUI.json │ ├── FateTokenType.json │ ├── FccShop.json │ ├── Festival.json │ ├── FieldMarker.json │ ├── FishParameter.json │ ├── FishingRecordType.json │ ├── FishingRecordTypeTransient.json │ ├── FishingSpot.json │ ├── Frontline03.json │ ├── Frontline04.json │ ├── FurnitureCatalogCategory.json │ ├── FurnitureCatalogItemList.json │ ├── GCRankGridaniaFemaleText.json │ ├── GCRankGridaniaMaleText.json │ ├── GCRankLimsaFemaleText.json │ ├── GCRankLimsaMaleText.json │ ├── GCRankUldahFemaleText.json │ ├── GCRankUldahMaleText.json │ ├── GCScripShopCategory.json │ ├── GCScripShopItem.json │ ├── GCShop.json │ ├── GCShopItemCategory.json │ ├── GCSupplyDuty.json │ ├── GCSupplyDutyReward.json │ ├── GFATE.json │ ├── GFateClimbing2.json │ ├── GFateClimbing2Content.json │ ├── GFateClimbing2TotemType.json │ ├── GFateRideShooting.json │ ├── GardeningSeed.json │ ├── GatheringCondition.json │ ├── GatheringExp.json │ ├── GatheringItem.json │ ├── GatheringItemLevelConvertTable.json │ ├── GatheringItemPoint.json │ ├── GatheringLeve.json │ ├── GatheringLeveRoute.json │ ├── GatheringLeveRule.json │ ├── GatheringNotebookList.json │ ├── GatheringPoint.json │ ├── GatheringPointBase.json │ ├── GatheringPointBonus.json │ ├── GatheringPointBonusType.json │ ├── GatheringPointName.json │ ├── GatheringPointTransient.json │ ├── GatheringRarePopTimeTable.json │ ├── GatheringSubCategory.json │ ├── GatheringType.json │ ├── GcArmyCaptureTactics.json │ ├── GcArmyExpedition.json │ ├── GcArmyExpeditionMemberBonus.json │ ├── GcArmyExpeditionType.json │ ├── GcArmyMemberGrow.json │ ├── GcArmyTraining.json │ ├── GeneralAction.json │ ├── GilShop.json │ ├── GilShopItem.json │ ├── GimmickAccessor.json │ ├── GimmickJump.json │ ├── GimmickRect.json │ ├── GoldSaucerArcadeMachine.json │ ├── GoldSaucerTextData.json │ ├── GrandCompany.json │ ├── GrandCompanyRank.json │ ├── GroupPoseFrame.json │ ├── GroupPoseStamp.json │ ├── GroupPoseStampCategory.json │ ├── GuardianDeity.json │ ├── Guide.json │ ├── GuidePage.json │ ├── GuidePageString.json │ ├── GuideTitle.json │ ├── GuildOrder.json │ ├── GuildOrderGuide.json │ ├── GuildOrderOfficer.json │ ├── GuildleveAssignment.json │ ├── GuildleveAssignmentCategory.json │ ├── GuildleveAssignmentTalk.json │ ├── HWDAnnounce.json │ ├── HWDCrafterSupply.json │ ├── HWDCrafterSupplyReward.json │ ├── HWDCrafterSupplyTerm.json │ ├── HWDDevLayerControl.json │ ├── HWDDevLevelUI.json │ ├── HWDDevLively.json │ ├── HWDDevProgress.json │ ├── HWDGathereInspectTerm.json │ ├── HWDGathererInspection.json │ ├── HWDGathererInspectionReward.json │ ├── HWDInfoBoardArticle.json │ ├── HWDInfoBoardArticleTransient.json │ ├── HWDInfoBoardArticleType.json │ ├── HWDLevelChangeDeception.json │ ├── HWDSharedGroup.json │ ├── HWDSharedGroupControlParam.json │ ├── HairMakeType.json │ ├── HouseRetainerPose.json │ ├── HousingAethernet.json │ ├── HousingAppeal.json │ ├── HousingEmploymentNpcList.json │ ├── HousingEmploymentNpcRace.json │ ├── HousingExterior.json │ ├── HousingFurniture.json │ ├── HousingLandSet.json │ ├── HousingMapMarkerInfo.json │ ├── HousingMerchantPose.json │ ├── HousingPlacement.json │ ├── HousingPreset.json │ ├── HousingUnitedExterior.json │ ├── HousingYardObject.json │ ├── HowTo.json │ ├── HowToCategory.json │ ├── HowToPage.json │ ├── HugeCraftworksNpc.json │ ├── HugeCraftworksRank.json │ ├── IKDContentBonus.json │ ├── IKDFishParam.json │ ├── IKDRoute.json │ ├── IKDRouteTable.json │ ├── IKDSpot.json │ ├── InclusionShop.json │ ├── InclusionShopCategory.json │ ├── InclusionShopSeries.json │ ├── IndividualWeather.json │ ├── InstanceContent.json │ ├── InstanceContentBuff.json │ ├── InstanceContentCSBonus.json │ ├── InstanceContentGuide.json │ ├── InstanceContentTextData.json │ ├── Item.json │ ├── ItemAction.json │ ├── ItemActionTelepo.json │ ├── ItemBarterCheck.json │ ├── ItemFood.json │ ├── ItemLevel.json │ ├── ItemSearchCategory.json │ ├── ItemSeries.json │ ├── ItemSortCategory.json │ ├── ItemSpecialBonus.json │ ├── ItemUICategory.json │ ├── Jingle.json │ ├── JobHudManual.json │ ├── JobHudManualPriority.json │ ├── JournalCategory.json │ ├── JournalGenre.json │ ├── JournalSection.json │ ├── Knockback.json │ ├── LegacyQuest.json │ ├── Leve.json │ ├── LeveAssignmentType.json │ ├── LeveClient.json │ ├── LeveRewardItem.json │ ├── LeveRewardItemGroup.json │ ├── LeveString.json │ ├── LeveVfx.json │ ├── Level.json │ ├── Lobby.json │ ├── LogFilter.json │ ├── LogKind.json │ ├── LogMessage.json │ ├── LotteryExchangeShop.json │ ├── MYCTemporaryItem.json │ ├── MYCTemporaryItemUICategory.json │ ├── MYCWarResultNotebook.json │ ├── MacroIcon.json │ ├── MacroIconRedirectOld.json │ ├── MainCommand.json │ ├── MainCommandCategory.json │ ├── ManeuversArmor.json │ ├── Map.json │ ├── MapCondition.json │ ├── MapMarker.json │ ├── MapMarkerRegion.json │ ├── MapSymbol.json │ ├── Marker.json │ ├── Materia.json │ ├── MateriaJoinRate.json │ ├── MateriaJoinRateGatherCraft.json │ ├── MateriaTomestoneRate.json │ ├── MiniGameRA.json │ ├── MinionRace.json │ ├── MinionRules.json │ ├── MinionSkillType.json │ ├── MobHuntOrder.json │ ├── MobHuntOrderType.json │ ├── MobHuntReward.json │ ├── MobHuntRewardCap.json │ ├── MobHuntTarget.json │ ├── ModelChara.json │ ├── ModelSkeleton.json │ ├── ModelState.json │ ├── MonsterNote.json │ ├── MonsterNoteTarget.json │ ├── MotionTimeline.json │ ├── MotionTimelineBlendTable.json │ ├── Mount.json │ ├── MountAction.json │ ├── MountCustomize.json │ ├── MountFlyingCondition.json │ ├── MountSpeed.json │ ├── MountTransient.json │ ├── MoveTimeline.json │ ├── MoveVfx.json │ ├── MovieStaffList.json │ ├── MovieSubtitle.json │ ├── MovieSubtitle500.json │ ├── MovieSubtitleVoyage.json │ ├── NotebookDivision.json │ ├── NotebookDivisionCategory.json │ ├── NotoriousMonster.json │ ├── NpcEquip.json │ ├── NpcYell.json │ ├── Omen.json │ ├── OnlineStatus.json │ ├── OpenContent.json │ ├── OpenContentCandidateName.json │ ├── Opening.json │ ├── Orchestrion.json │ ├── OrchestrionCategory.json │ ├── OrchestrionPath.json │ ├── OrchestrionUiparam.json │ ├── Ornament.json │ ├── ParamGrow.json │ ├── PartyContent.json │ ├── PartyContentCutscene.json │ ├── PartyContentTextData.json │ ├── PatchMark.json │ ├── Perform.json │ ├── PerformGroup.json │ ├── PerformTransient.json │ ├── Pet.json │ ├── PetAction.json │ ├── PetMirage.json │ ├── PhysicsGroup.json │ ├── PhysicsWind.json │ ├── Picture.json │ ├── PlaceName.json │ ├── PlantPotFlowerSeed.json │ ├── PreHandler.json │ ├── PresetCamera.json │ ├── PresetCameraAdjust.json │ ├── PublicContent.json │ ├── PublicContentCutscene.json │ ├── PublicContentTextData.json │ ├── PvPAction.json │ ├── PvPActionSort.json │ ├── PvPRank.json │ ├── PvPSelectTrait.json │ ├── PvPTrait.json │ ├── Quest.json │ ├── QuestBattle.json │ ├── QuestChapter.json │ ├── QuestClassJobReward.json │ ├── QuestClassJobSupply.json │ ├── QuestDerivedClass.json │ ├── QuestRedo.json │ ├── QuestRedoChapterUI.json │ ├── QuestRedoChapterUICategory.json │ ├── QuestRedoChapterUITab.json │ ├── QuestRedoIncompChapter.json │ ├── QuestRepeatFlag.json │ ├── QuestRewardOther.json │ ├── QuickChat.json │ ├── QuickChatTransient.json │ ├── RPParameter.json │ ├── Race.json │ ├── RacingChocoboItem.json │ ├── RacingChocoboName.json │ ├── RacingChocoboNameCategory.json │ ├── RacingChocoboNameInfo.json │ ├── RacingChocoboParam.json │ ├── RecastNavimesh.json │ ├── Recipe.json │ ├── RecipeLevelTable.json │ ├── RecipeLookup.json │ ├── RecipeNotebookList.json │ ├── RecommendContents.json │ ├── Relic.json │ ├── Relic3.json │ ├── RelicItem.json │ ├── RelicNote.json │ ├── RelicNoteCategory.json │ ├── Resident.json │ ├── ResistanceWeaponAdjust.json │ ├── RetainerTask.json │ ├── RetainerTaskLvRange.json │ ├── RetainerTaskNormal.json │ ├── RetainerTaskParameter.json │ ├── RetainerTaskRandom.json │ ├── RideShooting.json │ ├── RideShootingTextData.json │ ├── SatisfactionArbitration.json │ ├── SatisfactionNpc.json │ ├── SatisfactionSupply.json │ ├── SatisfactionSupplyReward.json │ ├── ScenarioTree.json │ ├── ScenarioTreeTips.json │ ├── ScenarioTreeTipsClassQuest.json │ ├── ScenarioType.json │ ├── ScreenImage.json │ ├── SecretRecipeBook.json │ ├── SkyIsland2Mission.json │ ├── SkyIsland2MissionDetail.json │ ├── SkyIsland2MissionType.json │ ├── SkyIsland2RangeType.json │ ├── SnipeTalk.json │ ├── SnipeTalkName.json │ ├── SpearfishingItem.json │ ├── SpearfishingNotebook.json │ ├── SpearfishingRecordPage.json │ ├── SpecialShop.json │ ├── SpecialShopItemCategory.json │ ├── Stain.json │ ├── StainTransient.json │ ├── Status.json │ ├── StatusHitEffect.json │ ├── StatusLoopVFX.json │ ├── Story.json │ ├── SubmarineExploration.json │ ├── SubmarineMap.json │ ├── SubmarinePart.json │ ├── SubmarineRank.json │ ├── SwitchTalk.json │ ├── SwitchTalkVariation.json │ ├── TerritoryType.json │ ├── TerritoryTypeTransient.json │ ├── TextCommand.json │ ├── Title.json │ ├── Tomestones.json │ ├── TomestonesItem.json │ ├── TopicSelect.json │ ├── Town.json │ ├── Trait.json │ ├── TraitRecast.json │ ├── TraitTransient.json │ ├── Transformation.json │ ├── Treasure.json │ ├── TreasureHuntRank.json │ ├── TreasureModel.json │ ├── TreasureSpot.json │ ├── Tribe.json │ ├── TripleTriad.json │ ├── TripleTriadCard.json │ ├── TripleTriadCardRarity.json │ ├── TripleTriadCardResident.json │ ├── TripleTriadCardType.json │ ├── TripleTriadCompetition.json │ ├── TripleTriadResident.json │ ├── TripleTriadRule.json │ ├── Tutorial.json │ ├── TutorialDPS.json │ ├── TutorialHealer.json │ ├── TutorialTank.json │ ├── UDS_Event.json │ ├── UDS_Property.json │ ├── UIColor.json │ ├── VFX.json │ ├── VaseFlower.json │ ├── Warp.json │ ├── WarpCondition.json │ ├── WarpLogic.json │ ├── WeaponTimeline.json │ ├── Weather.json │ ├── WeatherGroup.json │ ├── WeatherRate.json │ ├── WeatherReportReplace.json │ ├── WebGuidance.json │ ├── WebURL.json │ ├── WeddingBGM.json │ ├── WeeklyBingoOrderData.json │ ├── WeeklyBingoRewardData.json │ ├── WeeklyBingoText.json │ ├── WeeklyLotBonus.json │ ├── World.json │ ├── WorldDCGroupType.json │ ├── YKW.json │ ├── YardCatalogCategory.json │ ├── YardCatalogItemList.json │ ├── ZoneSharedGroup.json │ └── game.ver ├── LICENSE ├── README.md ├── __init__.py ├── cmd │ ├── __init__.py │ ├── all_exd_command.py │ ├── all_exd_raw_command.py │ ├── bgm_command.py │ ├── exd_command.py │ ├── image_command.py │ ├── language_command.py │ ├── raw_command.py │ ├── raw_exd_command.py │ ├── raw_sheet_command.py │ ├── ui_command.py │ └── xivshell.py ├── eorzeadatetime.py ├── ex │ ├── __init__.py │ ├── column.py │ ├── datareaders │ │ └── __init__.py │ ├── datasheet.py │ ├── excollection.py │ ├── header.py │ ├── language.py │ ├── multisheet.py │ ├── relational │ │ ├── __init__.py │ │ ├── column.py │ │ ├── datasheet.py │ │ ├── definition │ │ │ └── __init__.py │ │ ├── excollection.py │ │ ├── header.py │ │ ├── multisheet.py │ │ ├── serialization │ │ │ └── __init__.py │ │ ├── sheet.py │ │ ├── value_converters │ │ │ ├── __init__.py │ │ │ └── complexlinkconverter.py │ │ └── valueconverter.py │ ├── sheet.py │ ├── variant1 │ │ └── __init__.py │ └── variant2 │ │ └── __init__.py ├── exdhelper.py ├── file.py ├── imaging │ ├── __init__.py │ └── iconhelper.py ├── indexfile.py ├── pack.py ├── sound │ └── __init__.py ├── squish │ └── __init__.py ├── text │ ├── __init__.py │ ├── evaluation.py │ ├── expressions │ │ └── __init__.py │ ├── nodes │ │ └── __init__.py │ ├── parameters │ │ └── __init__.py │ └── utils.py ├── util │ └── __init__.py └── xiv │ ├── __init__.py │ ├── class_job.py │ ├── class_job_category.py │ ├── collections │ ├── __init__.py │ ├── enpc_collection.py │ └── shop_collection.py │ ├── enpc.py │ ├── enpc_base.py │ ├── enpc_resident.py │ ├── fc_rank.py │ ├── fcc_shop.py │ ├── fish_parameter.py │ ├── fishing_spot.py │ ├── gathering_condition.py │ ├── gathering_item.py │ ├── gathering_item_base.py │ ├── gathering_point.py │ ├── gathering_point_base.py │ ├── gathering_point_bonus.py │ ├── gathering_point_bonus_type.py │ ├── gathering_sub_category.py │ ├── gathering_type.py │ ├── gc_scrip_shop_category.py │ ├── gc_scrip_shop_item.py │ ├── gc_shop.py │ ├── gil_shop.py │ ├── gil_shop_item.py │ ├── grand_company.py │ ├── interfaces.py │ ├── item.py │ ├── level.py │ ├── map.py │ ├── masterpiece_supply_duty.py │ ├── param_grow.py │ ├── placename.py │ ├── sheet.py │ ├── shop_listing_item.py │ ├── spearfishing_item.py │ ├── special_shop.py │ ├── territory_type.py │ ├── weather.py │ ├── weather_rate.py │ └── xivcollection.py ├── readme.md ├── requirements.txt └── resource └── pythonnet-2.5.2-cp39-cp39-win_amd64.whl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/.gitignore -------------------------------------------------------------------------------- /Entrance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/Entrance.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/AddressManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/AddressManager.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/AttrContainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/AttrContainer.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/CheckGitUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/CheckGitUpdate.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/FFxivPythonTrigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/FFxivPythonTrigger.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/FrameInject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/FrameInject.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/Logger.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/MacroParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/MacroParser.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/QT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/QT.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/SaintCoinach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/SaintCoinach.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/Sigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/Sigs.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/Socket.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FFxivPythonTrigger/SpecialChar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/SpecialChar.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/Storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/Storage.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/Structure.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FFxivPythonTrigger/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/Utils.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/__init__.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/hook/EasyHook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/hook/EasyHook.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/hook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/hook/__init__.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/hook/res/EasyHook64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/hook/res/EasyHook64.dll -------------------------------------------------------------------------------- /FFxivPythonTrigger/hook/res/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/hook/res/LICENSE -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/StructFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/StructFactory.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/__init__.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/exception.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/memory.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/pattern.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/process.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/res/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/res/advapi32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/res/advapi32.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/res/kernel32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/res/kernel32.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/res/ntdll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/res/ntdll.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/res/psapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/res/psapi.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/memory/res/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/memory/res/structure.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/readme.md -------------------------------------------------------------------------------- /FFxivPythonTrigger/requirements_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/requirements_controller.py -------------------------------------------------------------------------------- /FFxivPythonTrigger/window/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/FFxivPythonTrigger/window/__init__.py -------------------------------------------------------------------------------- /Injecter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/Injecter.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/Terminal.py -------------------------------------------------------------------------------- /plugins/ACTLogLines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/ACTLogLines/__init__.py -------------------------------------------------------------------------------- /plugins/ACTLogLines/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/ACTLogLines/readme.md -------------------------------------------------------------------------------- /plugins/ActorQuery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/ActorQuery/__init__.py -------------------------------------------------------------------------------- /plugins/ActorQuery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/ActorQuery/readme.md -------------------------------------------------------------------------------- /plugins/ChatLog2/ChatLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/ChatLog2/ChatLog.py -------------------------------------------------------------------------------- /plugins/ChatLog2/GetInteger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/ChatLog2/GetInteger.py -------------------------------------------------------------------------------- /plugins/ChatLog2/Keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/ChatLog2/Keys.py -------------------------------------------------------------------------------- /plugins/ChatLog2/Messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/ChatLog2/Messages.py -------------------------------------------------------------------------------- /plugins/ChatLog2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/ChatLog2/__init__.py -------------------------------------------------------------------------------- /plugins/CombatMonitor/DbCreator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/CombatMonitor/DbCreator.py -------------------------------------------------------------------------------- /plugins/CombatMonitor/Definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/CombatMonitor/Definition.py -------------------------------------------------------------------------------- /plugins/CombatMonitor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/CombatMonitor/__init__.py -------------------------------------------------------------------------------- /plugins/CombatMonitor/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/CombatMonitor/dist/index.html -------------------------------------------------------------------------------- /plugins/CombatMonitor/dist/js/app.a60bb28d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/CombatMonitor/dist/js/app.a60bb28d.js -------------------------------------------------------------------------------- /plugins/CombatMonitor/dist/js/app.a60bb28d.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/CombatMonitor/dist/js/app.a60bb28d.js.map -------------------------------------------------------------------------------- /plugins/Command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/Command/__init__.py -------------------------------------------------------------------------------- /plugins/Command/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/Command/readme.md -------------------------------------------------------------------------------- /plugins/HttpApi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/HttpApi/__init__.py -------------------------------------------------------------------------------- /plugins/HttpApi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/HttpApi/readme.md -------------------------------------------------------------------------------- /plugins/Markings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/Markings/__init__.py -------------------------------------------------------------------------------- /plugins/Markings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/Markings/readme.md -------------------------------------------------------------------------------- /plugins/MoPlus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/MoPlus/__init__.py -------------------------------------------------------------------------------- /plugins/MoPlus/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/MoPlus/readme.md -------------------------------------------------------------------------------- /plugins/PartySkillMsg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/PartySkillMsg/__init__.py -------------------------------------------------------------------------------- /plugins/PartySkillMsg/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/PartySkillMsg/data.json -------------------------------------------------------------------------------- /plugins/PartyTroubleMaker/Define.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/PartyTroubleMaker/Define.py -------------------------------------------------------------------------------- /plugins/PartyTroubleMaker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/PartyTroubleMaker/__init__.py -------------------------------------------------------------------------------- /plugins/PartyTroubleMaker/datas/E11s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/PartyTroubleMaker/datas/E11s.py -------------------------------------------------------------------------------- /plugins/PartyTroubleMaker/datas/UltimateWeapon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/PartyTroubleMaker/datas/UltimateWeapon.py -------------------------------------------------------------------------------- /plugins/PartyTroubleMaker/datas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/PartyTroubleMaker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/PartyTroubleMaker/readme.md -------------------------------------------------------------------------------- /plugins/RockJail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/RockJail.py -------------------------------------------------------------------------------- /plugins/SendKeys/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/SendKeys/__init__.py -------------------------------------------------------------------------------- /plugins/SendKeys/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/SendKeys/readme.md -------------------------------------------------------------------------------- /plugins/SocketLogger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/SocketLogger/__init__.py -------------------------------------------------------------------------------- /plugins/SocketLogger/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/SocketLogger/readme.md -------------------------------------------------------------------------------- /plugins/WebChat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/__init__.py -------------------------------------------------------------------------------- /plugins/WebChat/res/css/app.a5b2a428.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/css/app.a5b2a428.css -------------------------------------------------------------------------------- /plugins/WebChat/res/css/chunk-6eac0c83.63b746ac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/css/chunk-6eac0c83.63b746ac.css -------------------------------------------------------------------------------- /plugins/WebChat/res/css/chunk-8ef694b6.d6e5f7f3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/css/chunk-8ef694b6.d6e5f7f3.css -------------------------------------------------------------------------------- /plugins/WebChat/res/css/chunk-vendors.37807362.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/css/chunk-vendors.37807362.css -------------------------------------------------------------------------------- /plugins/WebChat/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/favicon.ico -------------------------------------------------------------------------------- /plugins/WebChat/res/img/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/img/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /plugins/WebChat/res/img/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/img/icons/favicon-16x16.png -------------------------------------------------------------------------------- /plugins/WebChat/res/img/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/img/icons/favicon-32x32.png -------------------------------------------------------------------------------- /plugins/WebChat/res/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/index.html -------------------------------------------------------------------------------- /plugins/WebChat/res/js/app.dabfbb02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/js/app.dabfbb02.js -------------------------------------------------------------------------------- /plugins/WebChat/res/js/app.dabfbb02.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/js/app.dabfbb02.js.map -------------------------------------------------------------------------------- /plugins/WebChat/res/js/chunk-2891d78e.915a2d96.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/js/chunk-2891d78e.915a2d96.js -------------------------------------------------------------------------------- /plugins/WebChat/res/js/chunk-2d21a3d2.d7f21e07.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/js/chunk-2d21a3d2.d7f21e07.js -------------------------------------------------------------------------------- /plugins/WebChat/res/js/chunk-6eac0c83.751856fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/js/chunk-6eac0c83.751856fc.js -------------------------------------------------------------------------------- /plugins/WebChat/res/js/chunk-8ef694b6.e4544b3f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/js/chunk-8ef694b6.e4544b3f.js -------------------------------------------------------------------------------- /plugins/WebChat/res/js/chunk-vendors.bd1c9606.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/js/chunk-vendors.bd1c9606.js -------------------------------------------------------------------------------- /plugins/WebChat/res/js/chunk-vendors.bd1c9606.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/js/chunk-vendors.bd1c9606.js.map -------------------------------------------------------------------------------- /plugins/WebChat/res/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/manifest.json -------------------------------------------------------------------------------- /plugins/WebChat/res/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /plugins/WebChat/res/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/WebChat/res/service-worker.js -------------------------------------------------------------------------------- /plugins/XivCraft/SkyBuilderTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/SkyBuilderTest.py -------------------------------------------------------------------------------- /plugins/XivCraft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/__init__.py -------------------------------------------------------------------------------- /plugins/XivCraft/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/readme.md -------------------------------------------------------------------------------- /plugins/XivCraft/simulator/Craft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/simulator/Craft.py -------------------------------------------------------------------------------- /plugins/XivCraft/simulator/Effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/simulator/Effects.py -------------------------------------------------------------------------------- /plugins/XivCraft/simulator/Manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/simulator/Manager.py -------------------------------------------------------------------------------- /plugins/XivCraft/simulator/Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/simulator/Models.py -------------------------------------------------------------------------------- /plugins/XivCraft/simulator/Skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/simulator/Skill.py -------------------------------------------------------------------------------- /plugins/XivCraft/simulator/Status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/simulator/Status.py -------------------------------------------------------------------------------- /plugins/XivCraft/simulator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/JustDoIt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/JustDoIt/__init__.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/MacroCraft2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/MacroCraft2/__init__.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/SkyBuilders/Stage1_s23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/SkyBuilders/Stage1_s23.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/SkyBuilders/Stage1_s4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/SkyBuilders/Stage1_s4.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/SkyBuilders/Stage1_s4_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/SkyBuilders/Stage1_s4_v2.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/SkyBuilders/Stage1_s4_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/SkyBuilders/Stage1_s4_v3.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/SkyBuilders/Stage1_ultra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/SkyBuilders/Stage1_ultra.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/SkyBuilders/Stage2_s23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/SkyBuilders/Stage2_s23.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/SkyBuilders/Stage2_s4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/SkyBuilders/Stage2_s4.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/SkyBuilders/Stage3_Astar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/SkyBuilders/Stage3_Astar.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/SkyBuilders/Stage3_Bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/SkyBuilders/Stage3_Bfs.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/SkyBuilders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/SkyBuilders/__init__.py -------------------------------------------------------------------------------- /plugins/XivCraft/solvers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivCraft/solvers/__init__.py -------------------------------------------------------------------------------- /plugins/XivMagic/AddressManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMagic/AddressManager.py -------------------------------------------------------------------------------- /plugins/XivMagic/DoAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMagic/DoAction.py -------------------------------------------------------------------------------- /plugins/XivMagic/DoTextCommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMagic/DoTextCommand.py -------------------------------------------------------------------------------- /plugins/XivMagic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMagic/__init__.py -------------------------------------------------------------------------------- /plugins/XivMagic/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMagic/readme.md -------------------------------------------------------------------------------- /plugins/XivMemory/ActorTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/ActorTable.py -------------------------------------------------------------------------------- /plugins/XivMemory/AddressManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/AddressManager.py -------------------------------------------------------------------------------- /plugins/XivMemory/CombatData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/CombatData.py -------------------------------------------------------------------------------- /plugins/XivMemory/Inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/Inventory.py -------------------------------------------------------------------------------- /plugins/XivMemory/Movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/Movement.py -------------------------------------------------------------------------------- /plugins/XivMemory/Party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/Party.py -------------------------------------------------------------------------------- /plugins/XivMemory/PlayerInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/PlayerInfo.py -------------------------------------------------------------------------------- /plugins/XivMemory/Targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/Targets.py -------------------------------------------------------------------------------- /plugins/XivMemory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/__init__.py -------------------------------------------------------------------------------- /plugins/XivMemory/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/readme.md -------------------------------------------------------------------------------- /plugins/XivMemory/struct/Actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/struct/Actor.py -------------------------------------------------------------------------------- /plugins/XivMemory/struct/Combat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/struct/Combat.py -------------------------------------------------------------------------------- /plugins/XivMemory/struct/Enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/struct/Enum.py -------------------------------------------------------------------------------- /plugins/XivMemory/struct/Inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/struct/Inventory.py -------------------------------------------------------------------------------- /plugins/XivMemory/struct/JobGauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/struct/JobGauge.py -------------------------------------------------------------------------------- /plugins/XivMemory/struct/Movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/struct/Movement.py -------------------------------------------------------------------------------- /plugins/XivMemory/struct/Party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/struct/Party.py -------------------------------------------------------------------------------- /plugins/XivMemory/struct/Player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/struct/Player.py -------------------------------------------------------------------------------- /plugins/XivMemory/struct/Target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivMemory/struct/Target.py -------------------------------------------------------------------------------- /plugins/XivMemory/struct/__init__.py: -------------------------------------------------------------------------------- 1 | from . import Actor, Combat, Enum, JobGauge, Player, Target 2 | -------------------------------------------------------------------------------- /plugins/XivNetwork/BundleDecoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/BundleDecoder.py -------------------------------------------------------------------------------- /plugins/XivNetwork/CombatReset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/CombatReset.py -------------------------------------------------------------------------------- /plugins/XivNetwork/FindAddr2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/FindAddr2.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/Ability/Struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/Ability/Struct.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/ActorCast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/ActorCast.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/ActorControl142.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/ActorControl142.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/ActorControl143.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/ActorControl143.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/ActorControl144.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/ActorControl144.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/ActorGauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/ActorGauge.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/AddStatusEffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/AddStatusEffect.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/ContainerInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/ContainerInfo.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/CraftStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/CraftStatus.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/EventFinish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/EventFinish.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/EventPlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/EventPlay.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/EventStart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/EventStart.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/ItemInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/ItemInfo.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/Opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/Opcodes.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/Ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/Ping.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/WardLandInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/WardLandInfo.py -------------------------------------------------------------------------------- /plugins/XivNetwork/RecvProcessors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/RecvProcessors/__init__.py -------------------------------------------------------------------------------- /plugins/XivNetwork/SendProcessors/ActionSend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/SendProcessors/ActionSend.py -------------------------------------------------------------------------------- /plugins/XivNetwork/SendProcessors/ClientTrigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/SendProcessors/ClientTrigger.py -------------------------------------------------------------------------------- /plugins/XivNetwork/SendProcessors/EventAction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/SendProcessors/EventAction.py -------------------------------------------------------------------------------- /plugins/XivNetwork/SendProcessors/EventFinish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/SendProcessors/EventFinish.py -------------------------------------------------------------------------------- /plugins/XivNetwork/SendProcessors/EventStart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/SendProcessors/EventStart.py -------------------------------------------------------------------------------- /plugins/XivNetwork/SendProcessors/Opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/SendProcessors/Opcodes.py -------------------------------------------------------------------------------- /plugins/XivNetwork/SendProcessors/Ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/SendProcessors/Ping.py -------------------------------------------------------------------------------- /plugins/XivNetwork/SendProcessors/PositionAdjust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/SendProcessors/PositionAdjust.py -------------------------------------------------------------------------------- /plugins/XivNetwork/SendProcessors/PositionSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/SendProcessors/PositionSet.py -------------------------------------------------------------------------------- /plugins/XivNetwork/SendProcessors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/SendProcessors/__init__.py -------------------------------------------------------------------------------- /plugins/XivNetwork/Structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/Structs.py -------------------------------------------------------------------------------- /plugins/XivNetwork/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/__init__.py -------------------------------------------------------------------------------- /plugins/XivNetwork/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/plugins/XivNetwork/readme.md -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AOZArrangement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AOZArrangement.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AOZBoss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AOZBoss.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AOZContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AOZContent.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AOZReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AOZReport.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AOZScore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AOZScore.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Achievement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Achievement.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AchievementCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AchievementCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AchievementKind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AchievementKind.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AchievementTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AchievementTarget.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Action.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActionCastTimeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActionCastTimeline.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActionCastVFX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActionCastVFX.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActionCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActionCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActionComboRoute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActionComboRoute.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActionIndirection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActionIndirection.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActionParam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActionParam.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActionProcStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActionProcStatus.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActionTimeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActionTimeline.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActionTimelineMove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActionTimelineMove.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActionTransient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActionTransient.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActivityFeedButtons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActivityFeedButtons.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActivityFeedCaptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActivityFeedCaptions.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ActivityFeedImages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ActivityFeedImages.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Addon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Addon.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Adventure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Adventure.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AdventureExPhase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AdventureExPhase.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AetherCurrent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AetherCurrent.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AetherialWheel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AetherialWheel.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Aetheryte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Aetheryte.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AnimaWeapon5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AnimaWeapon5.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AnimaWeapon5Param.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AnimaWeapon5Param.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AnimaWeaponFUITalk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AnimaWeaponFUITalk.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AnimaWeaponIcon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AnimaWeaponIcon.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AnimaWeaponItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AnimaWeaponItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AnimationLOD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AnimationLOD.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AozAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AozAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AozActionTransient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AozActionTransient.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AquariumFish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AquariumFish.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AquariumWater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AquariumWater.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ArrayEventHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ArrayEventHandler.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/AttackType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/AttackType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BGM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BGM.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BGMFade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BGMFade.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BGMFadeType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BGMFadeType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BGMScene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BGMScene.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BGMSituation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BGMSituation.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BGMSwitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BGMSwitch.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BGMSystemDefine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BGMSystemDefine.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BNpcAnnounceIcon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BNpcAnnounceIcon.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BNpcBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BNpcBase.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BNpcCustomize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BNpcCustomize.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BNpcName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BNpcName.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BNpcParts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BNpcParts.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BNpcState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BNpcState.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BacklightColor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BacklightColor.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Ballista.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Ballista.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Balloon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Balloon.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BaseParam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BaseParam.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BattleLeve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BattleLeve.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BattleLeveRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BattleLeveRule.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BeastRankBonus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BeastRankBonus.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BeastReputationRank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BeastReputationRank.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BeastTribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BeastTribe.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Behavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Behavior.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BehaviorPath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BehaviorPath.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Buddy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Buddy.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BuddyAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BuddyAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BuddyEquip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BuddyEquip.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BuddyItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BuddyItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BuddyRank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BuddyRank.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/BuddySkill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/BuddySkill.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Cabinet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Cabinet.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CabinetCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CabinetCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Calendar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Calendar.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Carry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Carry.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Channeling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Channeling.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CharaMakeClassEquip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CharaMakeClassEquip.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CharaMakeCustomize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CharaMakeCustomize.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CharaMakeName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CharaMakeName.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CharaMakeType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CharaMakeType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ChocoboRace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ChocoboRace.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ChocoboRaceAbility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ChocoboRaceAbility.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ChocoboRaceItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ChocoboRaceItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ChocoboRaceRank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ChocoboRaceRank.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ChocoboRaceStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ChocoboRaceStatus.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ChocoboRaceTerritory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ChocoboRaceTerritory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ChocoboRaceTutorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ChocoboRaceTutorial.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ChocoboRaceWeather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ChocoboRaceWeather.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ChocoboTaxi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ChocoboTaxi.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ChocoboTaxiStand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ChocoboTaxiStand.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CircleActivity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CircleActivity.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ClassJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ClassJob.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ClassJobCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ClassJobCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CollectablesShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CollectablesShop.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CollectablesShopItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CollectablesShopItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Companion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Companion.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompanionMove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompanionMove.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompanionTransient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompanionTransient.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompanyAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompanyAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompanyCraftDraft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompanyCraftDraft.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompanyCraftPart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompanyCraftPart.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompanyCraftProcess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompanyCraftProcess.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompanyCraftSequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompanyCraftSequence.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompanyCraftType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompanyCraftType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompanyLeve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompanyLeve.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompanyLeveRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompanyLeveRule.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CompleteJournal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CompleteJournal.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Completion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Completion.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Condition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Condition.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ConfigKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ConfigKey.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentCloseCycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentCloseCycle.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentExAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentExAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentGauge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentGauge.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentGaugeColor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentGaugeColor.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentMemberType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentMemberType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentNpcTalk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentNpcTalk.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentRandomSelect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentRandomSelect.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentRoulette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentRoulette.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentTalk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentTalk.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentTalkParam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentTalkParam.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentsNote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentsNote.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentsTutorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentsTutorial.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ContentsTutorialPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ContentsTutorialPage.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CraftAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CraftAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CraftLeve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CraftLeve.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CraftLeveTalk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CraftLeveTalk.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CraftLevelDifference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CraftLevelDifference.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CraftType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CraftType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Credit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Credit.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CreditBackImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CreditBackImage.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CreditCast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CreditCast.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CreditList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CreditList.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CreditListText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CreditListText.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CustomTalk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CustomTalk.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CutSceneIncompQuest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CutSceneIncompQuest.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CutScreenImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CutScreenImage.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Cutscene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Cutscene.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CutsceneMotion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CutsceneMotion.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CutsceneWorkIndex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CutsceneWorkIndex.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/CycleTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/CycleTime.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DailySupplyItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DailySupplyItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DawnContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DawnContent.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DawnGrowMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DawnGrowMember.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DawnMemberUIParam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DawnMemberUIParam.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DawnQuestAnnounce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DawnQuestAnnounce.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DawnQuestMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DawnQuestMember.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DeepDungeon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DeepDungeon.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DeepDungeonBan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DeepDungeonBan.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DeepDungeonDanger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DeepDungeonDanger.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DeepDungeonEquipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DeepDungeonEquipment.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DeepDungeonItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DeepDungeonItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DeepDungeonLayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DeepDungeonLayer.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DeepDungeonMap5X.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DeepDungeonMap5X.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DeepDungeonRoom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DeepDungeonRoom.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DeepDungeonStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DeepDungeonStatus.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DefaultTalk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DefaultTalk.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DeliveryQuest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DeliveryQuest.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Description.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DescriptionPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DescriptionPage.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DescriptionSection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DescriptionSection.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DescriptionString.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DescriptionString.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DisposalShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DisposalShop.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DisposalShopItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DisposalShopItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DpsChallenge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DpsChallenge.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DpsChallengeOfficer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DpsChallengeOfficer.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DynamicEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DynamicEvent.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/DynamicEventType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/DynamicEventType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ENpcBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ENpcBase.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ENpcDressUp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ENpcDressUp.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ENpcDressUpDress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ENpcDressUpDress.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ENpcResident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ENpcResident.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EObj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EObj.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EObjName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EObjName.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EmjAddon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EmjAddon.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EmjDani.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EmjDani.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Emote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Emote.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EmoteCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EmoteCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EmoteMode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EmoteMode.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EquipRaceCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EquipRaceCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EquipSlotCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EquipSlotCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EurekaAetherItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EurekaAetherItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EurekaAethernet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EurekaAethernet.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EurekaGrowData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EurekaGrowData.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EurekaMagiaAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EurekaMagiaAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EurekaMagiciteItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EurekaMagiciteItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EventAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EventAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EventCustomIconType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EventCustomIconType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EventIconPriority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EventIconPriority.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EventIconType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EventIconType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EventItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EventItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EventItemHelp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EventItemHelp.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EventItemTimeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EventItemTimeline.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/EventSystemDefine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/EventSystemDefine.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ExVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ExVersion.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ExportedSG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ExportedSG.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCActivity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCActivity.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCActivityCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCActivityCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCAuthority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCAuthority.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCAuthorityCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCAuthorityCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCChestName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCChestName.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCCrestSymbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCCrestSymbol.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCHierarchy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCHierarchy.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCProfile.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCRank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCRank.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCReputation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCReputation.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FCRights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FCRights.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Fate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Fate.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FateEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FateEvent.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FateMode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FateMode.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FateProgressUI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FateProgressUI.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FateTokenType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FateTokenType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FccShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FccShop.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Festival.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Festival.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FieldMarker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FieldMarker.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FishParameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FishParameter.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FishingRecordType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FishingRecordType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/FishingSpot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/FishingSpot.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Frontline03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Frontline03.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Frontline04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Frontline04.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GCRankLimsaMaleText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GCRankLimsaMaleText.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GCRankUldahMaleText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GCRankUldahMaleText.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GCScripShopCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GCScripShopCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GCScripShopItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GCScripShopItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GCShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GCShop.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GCShopItemCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GCShopItemCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GCSupplyDuty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GCSupplyDuty.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GCSupplyDutyReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GCSupplyDutyReward.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GFATE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GFATE.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GFateClimbing2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GFateClimbing2.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GFateRideShooting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GFateRideShooting.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GardeningSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GardeningSeed.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringCondition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringCondition.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringExp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringExp.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringItemPoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringItemPoint.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringLeve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringLeve.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringLeveRoute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringLeveRoute.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringLeveRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringLeveRule.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringPoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringPoint.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringPointBase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringPointBase.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringPointBonus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringPointBonus.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringPointName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringPointName.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringSubCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringSubCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GatheringType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GatheringType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GcArmyCaptureTactics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GcArmyCaptureTactics.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GcArmyExpedition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GcArmyExpedition.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GcArmyExpeditionType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GcArmyExpeditionType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GcArmyMemberGrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GcArmyMemberGrow.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GcArmyTraining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GcArmyTraining.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GeneralAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GeneralAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GilShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GilShop.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GilShopItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GilShopItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GimmickAccessor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GimmickAccessor.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GimmickJump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GimmickJump.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GimmickRect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GimmickRect.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GoldSaucerTextData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GoldSaucerTextData.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GrandCompany.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GrandCompany.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GrandCompanyRank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GrandCompanyRank.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GroupPoseFrame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GroupPoseFrame.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GroupPoseStamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GroupPoseStamp.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GuardianDeity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GuardianDeity.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Guide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Guide.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GuidePage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GuidePage.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GuidePageString.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GuidePageString.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GuideTitle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GuideTitle.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GuildOrder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GuildOrder.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GuildOrderGuide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GuildOrderGuide.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GuildOrderOfficer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GuildOrderOfficer.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/GuildleveAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/GuildleveAssignment.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HWDAnnounce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HWDAnnounce.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HWDCrafterSupply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HWDCrafterSupply.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HWDCrafterSupplyTerm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HWDCrafterSupplyTerm.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HWDDevLayerControl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HWDDevLayerControl.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HWDDevLevelUI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HWDDevLevelUI.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HWDDevLively.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HWDDevLively.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HWDDevProgress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HWDDevProgress.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HWDInfoBoardArticle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HWDInfoBoardArticle.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HWDSharedGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HWDSharedGroup.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HairMakeType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HairMakeType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HouseRetainerPose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HouseRetainerPose.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HousingAethernet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HousingAethernet.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HousingAppeal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HousingAppeal.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HousingExterior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HousingExterior.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HousingFurniture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HousingFurniture.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HousingLandSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HousingLandSet.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HousingMapMarkerInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HousingMapMarkerInfo.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HousingMerchantPose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HousingMerchantPose.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HousingPlacement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HousingPlacement.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HousingPreset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HousingPreset.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HousingYardObject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HousingYardObject.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HowTo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HowTo.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HowToCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HowToCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HowToPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HowToPage.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HugeCraftworksNpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HugeCraftworksNpc.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/HugeCraftworksRank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/HugeCraftworksRank.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/IKDContentBonus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/IKDContentBonus.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/IKDFishParam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/IKDFishParam.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/IKDRoute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/IKDRoute.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/IKDRouteTable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/IKDRouteTable.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/IKDSpot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/IKDSpot.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/InclusionShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/InclusionShop.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/InclusionShopSeries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/InclusionShopSeries.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/IndividualWeather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/IndividualWeather.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/InstanceContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/InstanceContent.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/InstanceContentBuff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/InstanceContentBuff.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/InstanceContentGuide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/InstanceContentGuide.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Item.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ItemAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ItemAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ItemActionTelepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ItemActionTelepo.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ItemBarterCheck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ItemBarterCheck.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ItemFood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ItemFood.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ItemLevel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ItemLevel.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ItemSearchCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ItemSearchCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ItemSeries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ItemSeries.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ItemSortCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ItemSortCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ItemSpecialBonus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ItemSpecialBonus.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ItemUICategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ItemUICategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Jingle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Jingle.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/JobHudManual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/JobHudManual.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/JobHudManualPriority.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/JobHudManualPriority.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/JournalCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/JournalCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/JournalGenre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/JournalGenre.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/JournalSection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/JournalSection.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Knockback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Knockback.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LegacyQuest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LegacyQuest.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Leve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Leve.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LeveAssignmentType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LeveAssignmentType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LeveClient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LeveClient.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LeveRewardItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LeveRewardItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LeveRewardItemGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LeveRewardItemGroup.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LeveString.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LeveString.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LeveVfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LeveVfx.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Level.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Level.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Lobby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Lobby.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LogFilter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LogFilter.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LogKind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LogKind.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LogMessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LogMessage.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/LotteryExchangeShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/LotteryExchangeShop.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MYCTemporaryItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MYCTemporaryItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MacroIcon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MacroIcon.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MainCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MainCommand.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ManeuversArmor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ManeuversArmor.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Map.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MapCondition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MapCondition.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MapMarker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MapMarker.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MapMarkerRegion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MapMarkerRegion.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MapSymbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MapSymbol.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Marker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Marker.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Materia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Materia.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MateriaJoinRate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MateriaJoinRate.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MiniGameRA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MiniGameRA.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MinionRace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MinionRace.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MinionRules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MinionRules.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MinionSkillType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MinionSkillType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MobHuntOrder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MobHuntOrder.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MobHuntOrderType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MobHuntOrderType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MobHuntReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MobHuntReward.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MobHuntRewardCap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MobHuntRewardCap.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MobHuntTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MobHuntTarget.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ModelChara.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ModelChara.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ModelSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ModelSkeleton.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ModelState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ModelState.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MonsterNote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MonsterNote.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MonsterNoteTarget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MonsterNoteTarget.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MotionTimeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MotionTimeline.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Mount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Mount.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MountAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MountAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MountCustomize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MountCustomize.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MountSpeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MountSpeed.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MountTransient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MountTransient.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MoveTimeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MoveTimeline.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MoveVfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MoveVfx.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MovieStaffList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MovieStaffList.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MovieSubtitle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MovieSubtitle.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/MovieSubtitle500.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/MovieSubtitle500.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/NotebookDivision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/NotebookDivision.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/NotoriousMonster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/NotoriousMonster.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/NpcEquip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/NpcEquip.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/NpcYell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/NpcYell.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Omen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Omen.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/OnlineStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/OnlineStatus.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/OpenContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/OpenContent.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Opening.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Opening.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Orchestrion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Orchestrion.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/OrchestrionPath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/OrchestrionPath.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/OrchestrionUiparam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/OrchestrionUiparam.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Ornament.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Ornament.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ParamGrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ParamGrow.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PartyContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PartyContent.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PatchMark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PatchMark.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Perform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Perform.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PerformGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PerformGroup.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PerformTransient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PerformTransient.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Pet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Pet.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PetAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PetAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PetMirage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PetMirage.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PhysicsGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PhysicsGroup.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PhysicsWind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PhysicsWind.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Picture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Picture.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PlaceName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PlaceName.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PlantPotFlowerSeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PlantPotFlowerSeed.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PreHandler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PreHandler.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PresetCamera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PresetCamera.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PresetCameraAdjust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PresetCameraAdjust.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PublicContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PublicContent.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PvPAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PvPAction.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PvPActionSort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PvPActionSort.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PvPRank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PvPRank.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PvPSelectTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PvPSelectTrait.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/PvPTrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/PvPTrait.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Quest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Quest.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/QuestBattle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/QuestBattle.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/QuestChapter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/QuestChapter.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/QuestDerivedClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/QuestDerivedClass.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/QuestRedo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/QuestRedo.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/QuestRedoChapterUI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/QuestRedoChapterUI.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/QuestRepeatFlag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/QuestRepeatFlag.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/QuestRewardOther.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/QuestRewardOther.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/QuickChat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/QuickChat.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/QuickChatTransient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/QuickChatTransient.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RPParameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RPParameter.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Race.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Race.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RacingChocoboItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RacingChocoboItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RacingChocoboName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RacingChocoboName.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RacingChocoboParam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RacingChocoboParam.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RecastNavimesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RecastNavimesh.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Recipe.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RecipeLevelTable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RecipeLevelTable.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RecipeLookup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RecipeLookup.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RecipeNotebookList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RecipeNotebookList.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RecommendContents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RecommendContents.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Relic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Relic.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Relic3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Relic3.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RelicItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RelicItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RelicNote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RelicNote.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RelicNoteCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RelicNoteCategory.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Resident.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Resident.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RetainerTask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RetainerTask.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RetainerTaskNormal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RetainerTaskNormal.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RetainerTaskRandom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RetainerTaskRandom.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/RideShooting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/RideShooting.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SatisfactionNpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SatisfactionNpc.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SatisfactionSupply.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SatisfactionSupply.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ScenarioTree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ScenarioTree.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ScenarioTreeTips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ScenarioTreeTips.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ScenarioType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ScenarioType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ScreenImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ScreenImage.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SecretRecipeBook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SecretRecipeBook.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SkyIsland2Mission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SkyIsland2Mission.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SnipeTalk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SnipeTalk.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SnipeTalkName.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SnipeTalkName.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SpearfishingItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SpearfishingItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SpecialShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SpecialShop.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Stain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Stain.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/StainTransient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/StainTransient.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Status.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/StatusHitEffect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/StatusHitEffect.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/StatusLoopVFX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/StatusLoopVFX.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Story.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SubmarineMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SubmarineMap.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SubmarinePart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SubmarinePart.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SubmarineRank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SubmarineRank.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/SwitchTalk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/SwitchTalk.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TerritoryType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TerritoryType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TextCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TextCommand.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Title.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Title.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Tomestones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Tomestones.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TomestonesItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TomestonesItem.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TopicSelect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TopicSelect.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Town.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Town.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Trait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Trait.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TraitRecast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TraitRecast.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TraitTransient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TraitTransient.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Transformation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Transformation.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Treasure.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TreasureHuntRank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TreasureHuntRank.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TreasureModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TreasureModel.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TreasureSpot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TreasureSpot.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Tribe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Tribe.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TripleTriad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TripleTriad.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TripleTriadCard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TripleTriadCard.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TripleTriadRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TripleTriadRule.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Tutorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Tutorial.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TutorialDPS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TutorialDPS.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TutorialHealer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TutorialHealer.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/TutorialTank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/TutorialTank.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/UDS_Event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/UDS_Event.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/UDS_Property.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/UDS_Property.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/UIColor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/UIColor.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/VFX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/VFX.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/VaseFlower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/VaseFlower.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Warp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Warp.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WarpCondition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WarpCondition.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WarpLogic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WarpLogic.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WeaponTimeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WeaponTimeline.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/Weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/Weather.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WeatherGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WeatherGroup.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WeatherRate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WeatherRate.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WebGuidance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WebGuidance.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WebURL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WebURL.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WeddingBGM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WeddingBGM.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WeeklyBingoText.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WeeklyBingoText.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WeeklyLotBonus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WeeklyLotBonus.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/World.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/World.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/WorldDCGroupType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/WorldDCGroupType.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/YKW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/YKW.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/ZoneSharedGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/ZoneSharedGroup.json -------------------------------------------------------------------------------- /pysaintcoinach/Definitions/game.ver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/Definitions/game.ver -------------------------------------------------------------------------------- /pysaintcoinach/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/LICENSE -------------------------------------------------------------------------------- /pysaintcoinach/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/README.md -------------------------------------------------------------------------------- /pysaintcoinach/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/all_exd_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/all_exd_command.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/all_exd_raw_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/all_exd_raw_command.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/bgm_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/bgm_command.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/exd_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/exd_command.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/image_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/image_command.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/language_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/language_command.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/raw_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/raw_command.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/raw_exd_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/raw_exd_command.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/raw_sheet_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/raw_sheet_command.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/ui_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/ui_command.py -------------------------------------------------------------------------------- /pysaintcoinach/cmd/xivshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/cmd/xivshell.py -------------------------------------------------------------------------------- /pysaintcoinach/eorzeadatetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/eorzeadatetime.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/column.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/datareaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/datareaders/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/datasheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/datasheet.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/excollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/excollection.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/header.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/language.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/multisheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/multisheet.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/relational/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/relational/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/relational/column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/relational/column.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/relational/datasheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/relational/datasheet.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/relational/excollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/relational/excollection.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/relational/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/relational/header.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/relational/multisheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/relational/multisheet.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/relational/sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/relational/sheet.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/relational/valueconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/relational/valueconverter.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/sheet.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/variant1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/variant1/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/ex/variant2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/ex/variant2/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/exdhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/exdhelper.py -------------------------------------------------------------------------------- /pysaintcoinach/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/file.py -------------------------------------------------------------------------------- /pysaintcoinach/imaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/imaging/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/imaging/iconhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/imaging/iconhelper.py -------------------------------------------------------------------------------- /pysaintcoinach/indexfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/indexfile.py -------------------------------------------------------------------------------- /pysaintcoinach/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/pack.py -------------------------------------------------------------------------------- /pysaintcoinach/sound/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/sound/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/squish/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysaintcoinach/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/text/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/text/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/text/evaluation.py -------------------------------------------------------------------------------- /pysaintcoinach/text/expressions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/text/expressions/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/text/nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/text/nodes/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/text/parameters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/text/parameters/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/text/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/text/utils.py -------------------------------------------------------------------------------- /pysaintcoinach/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/util/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/class_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/class_job.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/class_job_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/class_job_category.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/collections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/collections/__init__.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/collections/enpc_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/collections/enpc_collection.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/collections/shop_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/collections/shop_collection.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/enpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/enpc.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/enpc_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/enpc_base.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/enpc_resident.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/enpc_resident.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/fc_rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/fc_rank.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/fcc_shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/fcc_shop.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/fish_parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/fish_parameter.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/fishing_spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/fishing_spot.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gathering_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gathering_condition.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gathering_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gathering_item.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gathering_item_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gathering_item_base.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gathering_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gathering_point.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gathering_point_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gathering_point_base.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gathering_point_bonus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gathering_point_bonus.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gathering_point_bonus_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gathering_point_bonus_type.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gathering_sub_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gathering_sub_category.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gathering_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gathering_type.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gc_scrip_shop_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gc_scrip_shop_category.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gc_scrip_shop_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gc_scrip_shop_item.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gc_shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gc_shop.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gil_shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gil_shop.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/gil_shop_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/gil_shop_item.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/grand_company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/grand_company.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/interfaces.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/item.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/level.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/map.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/masterpiece_supply_duty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/masterpiece_supply_duty.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/param_grow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/param_grow.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/placename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/placename.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/sheet.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/shop_listing_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/shop_listing_item.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/spearfishing_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/spearfishing_item.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/special_shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/special_shop.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/territory_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/territory_type.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/weather.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/weather_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/weather_rate.py -------------------------------------------------------------------------------- /pysaintcoinach/xiv/xivcollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/pysaintcoinach/xiv/xivcollection.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/requirements.txt -------------------------------------------------------------------------------- /resource/pythonnet-2.5.2-cp39-cp39-win_amd64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyaoouo/FFxivPythonTrigger2/HEAD/resource/pythonnet-2.5.2-cp39-cp39-win_amd64.whl --------------------------------------------------------------------------------