├── .editorconfig ├── .github └── workflows │ └── gh-pages-deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── cypress.config.js ├── cypress ├── e2e │ ├── achievement.cy.js │ ├── card.cy.js │ ├── event.cy.js │ ├── farm.cy.js │ ├── gallery.cy.js │ ├── gem.cy.js │ ├── general.cy.js │ ├── horde.cy.js │ ├── mining.cy.js │ ├── note.cy.js │ ├── relic.cy.js │ ├── treasure.cy.js │ └── village.cy.js ├── fixtures │ └── example.json ├── plugins │ └── index.js └── support │ ├── commands.js │ └── e2e.js ├── debug.json ├── forge.config.js ├── jsconfig.json ├── main.js ├── package.json ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── img │ └── note.png ├── index.html ├── site.webmanifest ├── theme │ └── sky │ │ └── navbar.png └── version.txt ├── scripts └── gh-pages-deploy.mjs ├── src ├── App.vue ├── components │ ├── partial │ │ ├── achievement │ │ │ └── Item.vue │ │ ├── card │ │ │ ├── CardItem.vue │ │ │ ├── CardOverview.vue │ │ │ ├── CardPack.vue │ │ │ ├── CardSelect.vue │ │ │ └── CardSelectDisplay.vue │ │ ├── cryolab │ │ │ └── LabFeature.vue │ │ ├── event │ │ │ ├── Bank.vue │ │ │ ├── Bingo.vue │ │ │ ├── BingoCell.vue │ │ │ ├── BloomBreeder.vue │ │ │ ├── BloomBuyFlower.vue │ │ │ ├── BloomFlower.vue │ │ │ ├── BloomInventory.vue │ │ │ ├── BloomInventorySlot.vue │ │ │ ├── Casino.vue │ │ │ ├── CindersCandle.vue │ │ │ ├── CindersInventory.vue │ │ │ ├── EventCalendar.vue │ │ │ ├── NightHuntFavouritableDisplay.vue │ │ │ ├── NightHuntIngredient.vue │ │ │ ├── NightHuntInventory.vue │ │ │ ├── NightHuntPotion.vue │ │ │ ├── NightHuntPotionList.vue │ │ │ ├── Prize.vue │ │ │ ├── Shop.vue │ │ │ ├── ShopList.vue │ │ │ ├── SnowballFight.vue │ │ │ ├── SnowdownFighter.vue │ │ │ ├── SnowdownInventory.vue │ │ │ ├── SnowdownItem.vue │ │ │ ├── SnowdownItemList.vue │ │ │ ├── SummerFestivalBuildingCard.vue │ │ │ ├── SummerFestivalInventory.vue │ │ │ ├── SummerFestivalIsland.vue │ │ │ ├── WeatherChaosFish.vue │ │ │ ├── WeatherChaosInventory.vue │ │ │ ├── WeatherChaosStatus.vue │ │ │ └── WheelOfFortune.vue │ │ ├── farm │ │ │ ├── Building.vue │ │ │ ├── BuildingCard.vue │ │ │ ├── Crop.vue │ │ │ ├── CropCard.vue │ │ │ ├── CropRareDrop.vue │ │ │ ├── CropUpgrade.vue │ │ │ ├── FertilizerCard.vue │ │ │ ├── Field.vue │ │ │ ├── FieldBar.vue │ │ │ ├── GeneIcon.vue │ │ │ ├── GeneUpgrade.vue │ │ │ ├── Inventory.vue │ │ │ └── PlaceableSelectDisplay.vue │ │ ├── gallery │ │ │ ├── Color.vue │ │ │ ├── IdeaItem.vue │ │ │ ├── IdeaList.vue │ │ │ ├── Inventory.vue │ │ │ ├── PrestigeInventory.vue │ │ │ ├── PrestigeStatus.vue │ │ │ └── ShapeMinigame.vue │ │ ├── gem │ │ │ ├── DiamondForge.vue │ │ │ ├── ForgeItem.vue │ │ │ └── GemList.vue │ │ ├── general │ │ │ ├── QuestLine.vue │ │ │ └── QuestTask.vue │ │ ├── horde │ │ │ ├── Active.vue │ │ │ ├── ActiveCost.vue │ │ │ ├── ActiveTooltip.vue │ │ │ ├── AreaMap.vue │ │ │ ├── BattlePass.vue │ │ │ ├── EnemyActive.vue │ │ │ ├── EnemyActiveTooltip.vue │ │ │ ├── EnemyStatus.vue │ │ │ ├── EntityStatus.vue │ │ │ ├── EquipDisplay.vue │ │ │ ├── EquipItem.vue │ │ │ ├── EquipList.vue │ │ │ ├── EquipLoadout.vue │ │ │ ├── FighterPrestigeStats.vue │ │ │ ├── HeirloomBoost.vue │ │ │ ├── HeirloomItem.vue │ │ │ ├── HeirloomList.vue │ │ │ ├── PlayerStatus.vue │ │ │ ├── PrestigeInventory.vue │ │ │ ├── PrestigeStatus.vue │ │ │ ├── Sigil.vue │ │ │ ├── SkillButton.vue │ │ │ ├── SkillTree.vue │ │ │ ├── Status.vue │ │ │ ├── TowerTile.vue │ │ │ ├── TrinketItem.vue │ │ │ └── TrinketList.vue │ │ ├── main │ │ │ ├── FeatureTile.vue │ │ │ └── NextTile.vue │ │ ├── mining │ │ │ ├── BeaconSector.vue │ │ │ ├── Ingredient.vue │ │ │ ├── Inventory.vue │ │ │ ├── PrestigeInventory.vue │ │ │ ├── PrestigeStatus.vue │ │ │ ├── Smeltery.vue │ │ │ ├── SmelteryStation.vue │ │ │ └── Status.vue │ │ ├── note │ │ │ ├── NoteList.vue │ │ │ └── ShowButton.vue │ │ ├── patchnote │ │ │ ├── PatchnoteContent.vue │ │ │ ├── PatchnoteItem.vue │ │ │ ├── PatchnoteRareDropChange.vue │ │ │ └── PatchnoteText.vue │ │ ├── prestige │ │ │ ├── InventoryTemplate.vue │ │ │ └── StatusTemplate.vue │ │ ├── relic │ │ │ ├── GlyphBar.vue │ │ │ ├── Item.vue │ │ │ ├── Mini.vue │ │ │ ├── MuseumTab.vue │ │ │ ├── RelicList.vue │ │ │ ├── RelicPedestal.vue │ │ │ └── RelicPedestalDisplay.vue │ │ ├── render │ │ │ ├── AlertText.vue │ │ │ ├── CurrencyTooltip.vue │ │ │ ├── GoobooTooltip.vue │ │ │ ├── MultStat.vue │ │ │ ├── StatRow.vue │ │ │ └── TabIconText.vue │ │ ├── school │ │ │ ├── ArtMinigame.vue │ │ │ ├── BookLibrary.vue │ │ │ ├── BookUpgrade.vue │ │ │ ├── ChemistryMinigame.vue │ │ │ ├── FeatureSelectDisplay.vue │ │ │ ├── HistoryMinigame.vue │ │ │ ├── LiteratureMinigame.vue │ │ │ ├── MathMinigame.vue │ │ │ ├── Subject.vue │ │ │ └── SubjectList.vue │ │ ├── settings │ │ │ ├── Item.vue │ │ │ ├── Keybind.vue │ │ │ └── ThemeItem.vue │ │ ├── snackbar │ │ │ ├── AchievementMessage.vue │ │ │ ├── CardPackInstantEffect.vue │ │ │ ├── CardPackMessage.vue │ │ │ ├── ErrorMessage.vue │ │ │ ├── FeatureMessage.vue │ │ │ ├── HeirloomMessage.vue │ │ │ ├── ImportMessage.vue │ │ │ ├── NoteMessage.vue │ │ │ ├── PrizeMessage.vue │ │ │ ├── SaveMessage.vue │ │ │ ├── SchoolMessage.vue │ │ │ ├── UnlockMessage.vue │ │ │ └── UpdateMessage.vue │ │ ├── treasure │ │ │ ├── BuyItem.vue │ │ │ ├── ChanceList.vue │ │ │ ├── ItemSlot.vue │ │ │ ├── StatList.vue │ │ │ ├── TreasureEffectDisplay.vue │ │ │ ├── TreasureIcon.vue │ │ │ └── WildcardSlot.vue │ │ ├── upgrade │ │ │ └── DisplayRow.vue │ │ └── village │ │ │ ├── BuildingStatBar.vue │ │ │ ├── CraftingItem.vue │ │ │ ├── CraftingList.vue │ │ │ ├── Job.vue │ │ │ ├── JobList.vue │ │ │ ├── OfferingInventory.vue │ │ │ ├── OfferingItem.vue │ │ │ ├── OfferingList.vue │ │ │ ├── PolicyItem.vue │ │ │ ├── PolicyList.vue │ │ │ ├── PrestigeInventory.vue │ │ │ ├── PrestigeStatus.vue │ │ │ └── Resources.vue │ ├── render │ │ ├── Consumable.vue │ │ ├── Currency.vue │ │ ├── CurrencyIcon.vue │ │ ├── CurrentConfirm.vue │ │ ├── CurrentNote.vue │ │ ├── GoldenDustMenu.vue │ │ ├── MultName.vue │ │ ├── NoteSimple.vue │ │ ├── NoteSystem.vue │ │ ├── OfflineFeature.vue │ │ ├── ParticleSpawner.vue │ │ ├── PriceTag.vue │ │ ├── StatBreakdown.vue │ │ ├── Upgrade.vue │ │ ├── UpgradeList.vue │ │ └── UpgradeQueue.vue │ └── view │ │ ├── Achievement.vue │ │ ├── Card.vue │ │ ├── Cryolab.vue │ │ ├── Debug.vue │ │ ├── Event.vue │ │ ├── Farm.vue │ │ ├── Gallery.vue │ │ ├── Gem.vue │ │ ├── General.vue │ │ ├── Horde.vue │ │ ├── Info.vue │ │ ├── Mining.vue │ │ ├── NewGame.vue │ │ ├── Note.vue │ │ ├── OfflineSummary.vue │ │ ├── Patchnote.vue │ │ ├── Relic.vue │ │ ├── ResetProgress.vue │ │ ├── School.vue │ │ ├── Settings.vue │ │ ├── StatOverview.vue │ │ ├── TabDuplicate.vue │ │ ├── Treasure.vue │ │ └── Village.vue ├── gbPlugin.js ├── js │ ├── constants.js │ ├── init.js │ ├── modules │ │ ├── achievement.js │ │ ├── achievement │ │ │ └── relic.js │ │ ├── card.js │ │ ├── cryolab.js │ │ ├── event.js │ │ ├── event │ │ │ ├── bank │ │ │ │ └── project.js │ │ │ ├── big.js │ │ │ ├── bloom │ │ │ │ ├── prize.js │ │ │ │ ├── tick.js │ │ │ │ └── upgrade.js │ │ │ ├── card.js │ │ │ ├── cardList.js │ │ │ ├── cinders │ │ │ │ ├── prize.js │ │ │ │ ├── producer.js │ │ │ │ ├── tick.js │ │ │ │ └── upgrade.js │ │ │ ├── nightHunt │ │ │ │ ├── ingredientStat.js │ │ │ │ ├── potion.js │ │ │ │ ├── prize.js │ │ │ │ ├── tick.js │ │ │ │ └── upgrade.js │ │ │ ├── prize.js │ │ │ ├── relic.js │ │ │ ├── snowdown │ │ │ │ ├── item.js │ │ │ │ ├── prize.js │ │ │ │ ├── tick.js │ │ │ │ └── upgrade.js │ │ │ ├── summerFestival │ │ │ │ ├── building.js │ │ │ │ ├── prize.js │ │ │ │ ├── quest.js │ │ │ │ ├── tick.js │ │ │ │ └── upgrade.js │ │ │ └── weatherChaos │ │ │ │ ├── bait.js │ │ │ │ ├── fish.js │ │ │ │ ├── fishingRod.js │ │ │ │ ├── location.js │ │ │ │ ├── prize.js │ │ │ │ ├── tick.js │ │ │ │ ├── upgrade.js │ │ │ │ └── weather.js │ │ ├── farm.js │ │ ├── farm │ │ │ ├── achievement.js │ │ │ ├── building.js │ │ │ ├── card.js │ │ │ ├── cardList.js │ │ │ ├── crop.js │ │ │ ├── fertilizer.js │ │ │ ├── gene.js │ │ │ ├── geneLevels.js │ │ │ ├── relic.js │ │ │ ├── upgrade.js │ │ │ └── upgradePremium.js │ │ ├── gallery.js │ │ ├── gallery │ │ │ ├── achievement.js │ │ │ ├── card.js │ │ │ ├── cardList.js │ │ │ ├── idea.js │ │ │ ├── relic.js │ │ │ ├── shape.js │ │ │ ├── upgrade.js │ │ │ ├── upgradePremium.js │ │ │ ├── upgradePrestige.js │ │ │ └── upgradeShape.js │ │ ├── gem.js │ │ ├── gem │ │ │ ├── card.js │ │ │ ├── cardList.js │ │ │ ├── forge.js │ │ │ └── relic.js │ │ ├── general.js │ │ ├── general │ │ │ ├── grobodal.js │ │ │ ├── orladee.js │ │ │ └── relic.js │ │ ├── horde.js │ │ ├── horde │ │ │ ├── achievement.js │ │ │ ├── area │ │ │ │ ├── loveIsland.js │ │ │ │ ├── monkeyJungle.js │ │ │ │ └── warzone.js │ │ │ ├── battlePass.js │ │ │ ├── boss.js │ │ │ ├── card.js │ │ │ ├── cardList.js │ │ │ ├── element.js │ │ │ ├── enemyType.js │ │ │ ├── equipment.js │ │ │ ├── fighterClass │ │ │ │ ├── adventurer.js │ │ │ │ ├── archer.js │ │ │ │ ├── assassin.js │ │ │ │ ├── cultist.js │ │ │ │ ├── knight.js │ │ │ │ ├── mage.js │ │ │ │ ├── pirate.js │ │ │ │ ├── scholar.js │ │ │ │ ├── shaman.js │ │ │ │ └── undead.js │ │ │ ├── heirloom.js │ │ │ ├── relic.js │ │ │ ├── sigil.js │ │ │ ├── sigil_boss.js │ │ │ ├── tower.js │ │ │ ├── trinket.js │ │ │ ├── upgrade.js │ │ │ ├── upgrade2.js │ │ │ ├── upgradePremium.js │ │ │ └── upgradePrestige.js │ │ ├── meta.js │ │ ├── migration │ │ │ ├── helper.js │ │ │ ├── v1_1_0.js │ │ │ ├── v1_1_2.js │ │ │ ├── v1_3_0.js │ │ │ ├── v1_3_4.js │ │ │ ├── v1_3_5.js │ │ │ ├── v1_4_0.js │ │ │ ├── v1_4_1.js │ │ │ ├── v1_5_0.js │ │ │ ├── v1_5_1.js │ │ │ ├── v1_5_3.js │ │ │ ├── v1_5_4.js │ │ │ ├── v1_5_6.js │ │ │ └── v1_6_0.js │ │ ├── mining.js │ │ ├── mining │ │ │ ├── achievement.js │ │ │ ├── beacon.js │ │ │ ├── card.js │ │ │ ├── cardList.js │ │ │ ├── enhancement.js │ │ │ ├── ore.js │ │ │ ├── relic.js │ │ │ ├── smeltery.js │ │ │ ├── upgrade.js │ │ │ ├── upgrade2.js │ │ │ ├── upgradePremium.js │ │ │ └── upgradePrestige.js │ │ ├── patchnote │ │ │ ├── patchnotes.js │ │ │ ├── v1_0_0.js │ │ │ ├── v1_0_1.js │ │ │ ├── v1_1_0.js │ │ │ ├── v1_1_1.js │ │ │ ├── v1_1_2.js │ │ │ ├── v1_2_0.js │ │ │ ├── v1_3_0.js │ │ │ ├── v1_3_1.js │ │ │ ├── v1_3_2.js │ │ │ ├── v1_3_3.js │ │ │ ├── v1_3_4.js │ │ │ ├── v1_3_5.js │ │ │ ├── v1_3_6.js │ │ │ ├── v1_4_0.js │ │ │ ├── v1_4_1.js │ │ │ ├── v1_4_2.js │ │ │ ├── v1_5_0.js │ │ │ ├── v1_5_1.js │ │ │ ├── v1_5_2.js │ │ │ ├── v1_5_3.js │ │ │ ├── v1_5_4.js │ │ │ ├── v1_5_5.js │ │ │ ├── v1_5_6.js │ │ │ ├── v1_5_7.js │ │ │ ├── v1_5_8.js │ │ │ ├── v1_6_0.js │ │ │ ├── v1_6_1.js │ │ │ └── v1_6_2.js │ │ ├── relic.js │ │ ├── relic │ │ │ └── glyph.js │ │ ├── school.js │ │ ├── school │ │ │ ├── bookFarm.js │ │ │ ├── bookGallery.js │ │ │ ├── bookHorde.js │ │ │ ├── bookMining.js │ │ │ ├── bookVillage.js │ │ │ ├── relic.js │ │ │ └── upgradePremium.js │ │ ├── treasure.js │ │ ├── treasure │ │ │ ├── effect.js │ │ │ ├── modifier.js │ │ │ └── upgradePremium.js │ │ ├── village.js │ │ └── village │ │ │ ├── achievement.js │ │ │ ├── building.js │ │ │ ├── card.js │ │ │ ├── cardList.js │ │ │ ├── craftingRecipe.js │ │ │ ├── job.js │ │ │ ├── offering.js │ │ │ ├── policy.js │ │ │ ├── relic.js │ │ │ ├── upgrade.js │ │ │ ├── upgrade2.js │ │ │ ├── upgradePremium.js │ │ │ └── upgradePrestige.js │ ├── savefile.js │ ├── theme │ │ ├── autumnForest.js │ │ ├── brown.js │ │ ├── candlelight.js │ │ ├── cherry.js │ │ ├── colorful.js │ │ ├── colors.js │ │ ├── cyan.js │ │ ├── default.js │ │ ├── factory.js │ │ ├── forest.js │ │ ├── frozen.js │ │ ├── green.js │ │ ├── grey.js │ │ ├── orange.js │ │ ├── pink.js │ │ ├── polar.js │ │ ├── prismatic.js │ │ ├── purple.js │ │ ├── rain.js │ │ ├── red.js │ │ ├── sepia.js │ │ ├── shades.js │ │ ├── sky.js │ │ ├── themes.js │ │ ├── waves.js │ │ └── yellow.js │ ├── tick.js │ └── utils │ │ ├── array.js │ │ ├── color.js │ │ ├── date.js │ │ ├── file.js │ │ ├── format.js │ │ ├── math.js │ │ ├── random.js │ │ ├── string.js │ │ └── words.js ├── lang │ ├── de.js │ ├── de │ │ ├── card.js │ │ ├── consumable.js │ │ ├── currency.js │ │ ├── mult.js │ │ ├── note.js │ │ ├── patchnote.js │ │ ├── relic.js │ │ ├── stat.js │ │ ├── tag.js │ │ ├── unlock.js │ │ └── upgrade.js │ ├── en.js │ └── en │ │ ├── card.js │ │ ├── consumable.js │ │ ├── currency.js │ │ ├── mult.js │ │ ├── note.js │ │ ├── patchnote.js │ │ ├── relic.js │ │ ├── stat.js │ │ ├── tag.js │ │ ├── unlock.js │ │ └── upgrade.js ├── main.js ├── plugins │ └── vuetify.js └── store │ ├── achievement.js │ ├── bloom.js │ ├── card.js │ ├── cinders.js │ ├── consumable.js │ ├── cryolab.js │ ├── currency.js │ ├── event.js │ ├── farm.js │ ├── gallery.js │ ├── gem.js │ ├── general.js │ ├── horde.js │ ├── index.js │ ├── meta.js │ ├── mining.js │ ├── mult.js │ ├── nightHunt.js │ ├── note.js │ ├── relic.js │ ├── school.js │ ├── snowdown.js │ ├── stat.js │ ├── summerFestival.js │ ├── system.js │ ├── tag.js │ ├── treasure.js │ ├── unlock.js │ ├── upgrade.js │ ├── village.js │ └── weatherChaos.js ├── test └── unit │ ├── currency.test.js │ ├── event.test.js │ ├── mult.test.js │ ├── setup.test.js │ ├── stat.test.js │ ├── treasure.test.js │ ├── unlock.test.js │ ├── upgrade.test.js │ └── utils.test.js ├── vue.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/gh-pages-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/.github/workflows/gh-pages-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | /coverage 4 | /out -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/babel.config.js -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/achievement.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/achievement.cy.js -------------------------------------------------------------------------------- /cypress/e2e/card.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/card.cy.js -------------------------------------------------------------------------------- /cypress/e2e/event.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/event.cy.js -------------------------------------------------------------------------------- /cypress/e2e/farm.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/farm.cy.js -------------------------------------------------------------------------------- /cypress/e2e/gallery.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/gallery.cy.js -------------------------------------------------------------------------------- /cypress/e2e/gem.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/gem.cy.js -------------------------------------------------------------------------------- /cypress/e2e/general.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/general.cy.js -------------------------------------------------------------------------------- /cypress/e2e/horde.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/horde.cy.js -------------------------------------------------------------------------------- /cypress/e2e/mining.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/mining.cy.js -------------------------------------------------------------------------------- /cypress/e2e/note.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/note.cy.js -------------------------------------------------------------------------------- /cypress/e2e/relic.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/relic.cy.js -------------------------------------------------------------------------------- /cypress/e2e/treasure.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/treasure.cy.js -------------------------------------------------------------------------------- /cypress/e2e/village.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/e2e/village.cy.js -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/debug.json -------------------------------------------------------------------------------- /forge.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/forge.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/jsconfig.json -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/package.json -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/public/img/note.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/public/index.html -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/theme/sky/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/public/theme/sky/navbar.png -------------------------------------------------------------------------------- /public/version.txt: -------------------------------------------------------------------------------- 1 | 1.6.2 2 | -------------------------------------------------------------------------------- /scripts/gh-pages-deploy.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/scripts/gh-pages-deploy.mjs -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/partial/achievement/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/achievement/Item.vue -------------------------------------------------------------------------------- /src/components/partial/card/CardItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/card/CardItem.vue -------------------------------------------------------------------------------- /src/components/partial/card/CardOverview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/card/CardOverview.vue -------------------------------------------------------------------------------- /src/components/partial/card/CardPack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/card/CardPack.vue -------------------------------------------------------------------------------- /src/components/partial/card/CardSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/card/CardSelect.vue -------------------------------------------------------------------------------- /src/components/partial/card/CardSelectDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/card/CardSelectDisplay.vue -------------------------------------------------------------------------------- /src/components/partial/cryolab/LabFeature.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/cryolab/LabFeature.vue -------------------------------------------------------------------------------- /src/components/partial/event/Bank.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/Bank.vue -------------------------------------------------------------------------------- /src/components/partial/event/Bingo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/Bingo.vue -------------------------------------------------------------------------------- /src/components/partial/event/BingoCell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/BingoCell.vue -------------------------------------------------------------------------------- /src/components/partial/event/BloomBreeder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/BloomBreeder.vue -------------------------------------------------------------------------------- /src/components/partial/event/BloomBuyFlower.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/BloomBuyFlower.vue -------------------------------------------------------------------------------- /src/components/partial/event/BloomFlower.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/BloomFlower.vue -------------------------------------------------------------------------------- /src/components/partial/event/BloomInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/BloomInventory.vue -------------------------------------------------------------------------------- /src/components/partial/event/BloomInventorySlot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/BloomInventorySlot.vue -------------------------------------------------------------------------------- /src/components/partial/event/Casino.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/Casino.vue -------------------------------------------------------------------------------- /src/components/partial/event/CindersCandle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/CindersCandle.vue -------------------------------------------------------------------------------- /src/components/partial/event/CindersInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/CindersInventory.vue -------------------------------------------------------------------------------- /src/components/partial/event/EventCalendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/EventCalendar.vue -------------------------------------------------------------------------------- /src/components/partial/event/NightHuntFavouritableDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/NightHuntFavouritableDisplay.vue -------------------------------------------------------------------------------- /src/components/partial/event/NightHuntIngredient.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/NightHuntIngredient.vue -------------------------------------------------------------------------------- /src/components/partial/event/NightHuntInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/NightHuntInventory.vue -------------------------------------------------------------------------------- /src/components/partial/event/NightHuntPotion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/NightHuntPotion.vue -------------------------------------------------------------------------------- /src/components/partial/event/NightHuntPotionList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/NightHuntPotionList.vue -------------------------------------------------------------------------------- /src/components/partial/event/Prize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/Prize.vue -------------------------------------------------------------------------------- /src/components/partial/event/Shop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/Shop.vue -------------------------------------------------------------------------------- /src/components/partial/event/ShopList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/ShopList.vue -------------------------------------------------------------------------------- /src/components/partial/event/SnowballFight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/SnowballFight.vue -------------------------------------------------------------------------------- /src/components/partial/event/SnowdownFighter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/SnowdownFighter.vue -------------------------------------------------------------------------------- /src/components/partial/event/SnowdownInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/SnowdownInventory.vue -------------------------------------------------------------------------------- /src/components/partial/event/SnowdownItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/SnowdownItem.vue -------------------------------------------------------------------------------- /src/components/partial/event/SnowdownItemList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/SnowdownItemList.vue -------------------------------------------------------------------------------- /src/components/partial/event/SummerFestivalBuildingCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/SummerFestivalBuildingCard.vue -------------------------------------------------------------------------------- /src/components/partial/event/SummerFestivalInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/SummerFestivalInventory.vue -------------------------------------------------------------------------------- /src/components/partial/event/SummerFestivalIsland.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/SummerFestivalIsland.vue -------------------------------------------------------------------------------- /src/components/partial/event/WeatherChaosFish.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/WeatherChaosFish.vue -------------------------------------------------------------------------------- /src/components/partial/event/WeatherChaosInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/WeatherChaosInventory.vue -------------------------------------------------------------------------------- /src/components/partial/event/WeatherChaosStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/WeatherChaosStatus.vue -------------------------------------------------------------------------------- /src/components/partial/event/WheelOfFortune.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/event/WheelOfFortune.vue -------------------------------------------------------------------------------- /src/components/partial/farm/Building.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/Building.vue -------------------------------------------------------------------------------- /src/components/partial/farm/BuildingCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/BuildingCard.vue -------------------------------------------------------------------------------- /src/components/partial/farm/Crop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/Crop.vue -------------------------------------------------------------------------------- /src/components/partial/farm/CropCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/CropCard.vue -------------------------------------------------------------------------------- /src/components/partial/farm/CropRareDrop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/CropRareDrop.vue -------------------------------------------------------------------------------- /src/components/partial/farm/CropUpgrade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/CropUpgrade.vue -------------------------------------------------------------------------------- /src/components/partial/farm/FertilizerCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/FertilizerCard.vue -------------------------------------------------------------------------------- /src/components/partial/farm/Field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/Field.vue -------------------------------------------------------------------------------- /src/components/partial/farm/FieldBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/FieldBar.vue -------------------------------------------------------------------------------- /src/components/partial/farm/GeneIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/GeneIcon.vue -------------------------------------------------------------------------------- /src/components/partial/farm/GeneUpgrade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/GeneUpgrade.vue -------------------------------------------------------------------------------- /src/components/partial/farm/Inventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/Inventory.vue -------------------------------------------------------------------------------- /src/components/partial/farm/PlaceableSelectDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/farm/PlaceableSelectDisplay.vue -------------------------------------------------------------------------------- /src/components/partial/gallery/Color.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/gallery/Color.vue -------------------------------------------------------------------------------- /src/components/partial/gallery/IdeaItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/gallery/IdeaItem.vue -------------------------------------------------------------------------------- /src/components/partial/gallery/IdeaList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/gallery/IdeaList.vue -------------------------------------------------------------------------------- /src/components/partial/gallery/Inventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/gallery/Inventory.vue -------------------------------------------------------------------------------- /src/components/partial/gallery/PrestigeInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/gallery/PrestigeInventory.vue -------------------------------------------------------------------------------- /src/components/partial/gallery/PrestigeStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/gallery/PrestigeStatus.vue -------------------------------------------------------------------------------- /src/components/partial/gallery/ShapeMinigame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/gallery/ShapeMinigame.vue -------------------------------------------------------------------------------- /src/components/partial/gem/DiamondForge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/gem/DiamondForge.vue -------------------------------------------------------------------------------- /src/components/partial/gem/ForgeItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/gem/ForgeItem.vue -------------------------------------------------------------------------------- /src/components/partial/gem/GemList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/gem/GemList.vue -------------------------------------------------------------------------------- /src/components/partial/general/QuestLine.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/general/QuestLine.vue -------------------------------------------------------------------------------- /src/components/partial/general/QuestTask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/general/QuestTask.vue -------------------------------------------------------------------------------- /src/components/partial/horde/Active.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/Active.vue -------------------------------------------------------------------------------- /src/components/partial/horde/ActiveCost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/ActiveCost.vue -------------------------------------------------------------------------------- /src/components/partial/horde/ActiveTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/ActiveTooltip.vue -------------------------------------------------------------------------------- /src/components/partial/horde/AreaMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/AreaMap.vue -------------------------------------------------------------------------------- /src/components/partial/horde/BattlePass.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/BattlePass.vue -------------------------------------------------------------------------------- /src/components/partial/horde/EnemyActive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/EnemyActive.vue -------------------------------------------------------------------------------- /src/components/partial/horde/EnemyActiveTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/EnemyActiveTooltip.vue -------------------------------------------------------------------------------- /src/components/partial/horde/EnemyStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/EnemyStatus.vue -------------------------------------------------------------------------------- /src/components/partial/horde/EntityStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/EntityStatus.vue -------------------------------------------------------------------------------- /src/components/partial/horde/EquipDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/EquipDisplay.vue -------------------------------------------------------------------------------- /src/components/partial/horde/EquipItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/EquipItem.vue -------------------------------------------------------------------------------- /src/components/partial/horde/EquipList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/EquipList.vue -------------------------------------------------------------------------------- /src/components/partial/horde/EquipLoadout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/EquipLoadout.vue -------------------------------------------------------------------------------- /src/components/partial/horde/FighterPrestigeStats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/FighterPrestigeStats.vue -------------------------------------------------------------------------------- /src/components/partial/horde/HeirloomBoost.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/HeirloomBoost.vue -------------------------------------------------------------------------------- /src/components/partial/horde/HeirloomItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/HeirloomItem.vue -------------------------------------------------------------------------------- /src/components/partial/horde/HeirloomList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/HeirloomList.vue -------------------------------------------------------------------------------- /src/components/partial/horde/PlayerStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/PlayerStatus.vue -------------------------------------------------------------------------------- /src/components/partial/horde/PrestigeInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/PrestigeInventory.vue -------------------------------------------------------------------------------- /src/components/partial/horde/PrestigeStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/PrestigeStatus.vue -------------------------------------------------------------------------------- /src/components/partial/horde/Sigil.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/Sigil.vue -------------------------------------------------------------------------------- /src/components/partial/horde/SkillButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/SkillButton.vue -------------------------------------------------------------------------------- /src/components/partial/horde/SkillTree.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/SkillTree.vue -------------------------------------------------------------------------------- /src/components/partial/horde/Status.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/Status.vue -------------------------------------------------------------------------------- /src/components/partial/horde/TowerTile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/TowerTile.vue -------------------------------------------------------------------------------- /src/components/partial/horde/TrinketItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/TrinketItem.vue -------------------------------------------------------------------------------- /src/components/partial/horde/TrinketList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/horde/TrinketList.vue -------------------------------------------------------------------------------- /src/components/partial/main/FeatureTile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/main/FeatureTile.vue -------------------------------------------------------------------------------- /src/components/partial/main/NextTile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/main/NextTile.vue -------------------------------------------------------------------------------- /src/components/partial/mining/BeaconSector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/mining/BeaconSector.vue -------------------------------------------------------------------------------- /src/components/partial/mining/Ingredient.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/mining/Ingredient.vue -------------------------------------------------------------------------------- /src/components/partial/mining/Inventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/mining/Inventory.vue -------------------------------------------------------------------------------- /src/components/partial/mining/PrestigeInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/mining/PrestigeInventory.vue -------------------------------------------------------------------------------- /src/components/partial/mining/PrestigeStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/mining/PrestigeStatus.vue -------------------------------------------------------------------------------- /src/components/partial/mining/Smeltery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/mining/Smeltery.vue -------------------------------------------------------------------------------- /src/components/partial/mining/SmelteryStation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/mining/SmelteryStation.vue -------------------------------------------------------------------------------- /src/components/partial/mining/Status.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/mining/Status.vue -------------------------------------------------------------------------------- /src/components/partial/note/NoteList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/note/NoteList.vue -------------------------------------------------------------------------------- /src/components/partial/note/ShowButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/note/ShowButton.vue -------------------------------------------------------------------------------- /src/components/partial/patchnote/PatchnoteContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/patchnote/PatchnoteContent.vue -------------------------------------------------------------------------------- /src/components/partial/patchnote/PatchnoteItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/patchnote/PatchnoteItem.vue -------------------------------------------------------------------------------- /src/components/partial/patchnote/PatchnoteRareDropChange.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/patchnote/PatchnoteRareDropChange.vue -------------------------------------------------------------------------------- /src/components/partial/patchnote/PatchnoteText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/patchnote/PatchnoteText.vue -------------------------------------------------------------------------------- /src/components/partial/prestige/InventoryTemplate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/prestige/InventoryTemplate.vue -------------------------------------------------------------------------------- /src/components/partial/prestige/StatusTemplate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/prestige/StatusTemplate.vue -------------------------------------------------------------------------------- /src/components/partial/relic/GlyphBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/relic/GlyphBar.vue -------------------------------------------------------------------------------- /src/components/partial/relic/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/relic/Item.vue -------------------------------------------------------------------------------- /src/components/partial/relic/Mini.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/relic/Mini.vue -------------------------------------------------------------------------------- /src/components/partial/relic/MuseumTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/relic/MuseumTab.vue -------------------------------------------------------------------------------- /src/components/partial/relic/RelicList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/relic/RelicList.vue -------------------------------------------------------------------------------- /src/components/partial/relic/RelicPedestal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/relic/RelicPedestal.vue -------------------------------------------------------------------------------- /src/components/partial/relic/RelicPedestalDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/relic/RelicPedestalDisplay.vue -------------------------------------------------------------------------------- /src/components/partial/render/AlertText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/render/AlertText.vue -------------------------------------------------------------------------------- /src/components/partial/render/CurrencyTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/render/CurrencyTooltip.vue -------------------------------------------------------------------------------- /src/components/partial/render/GoobooTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/render/GoobooTooltip.vue -------------------------------------------------------------------------------- /src/components/partial/render/MultStat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/render/MultStat.vue -------------------------------------------------------------------------------- /src/components/partial/render/StatRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/render/StatRow.vue -------------------------------------------------------------------------------- /src/components/partial/render/TabIconText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/render/TabIconText.vue -------------------------------------------------------------------------------- /src/components/partial/school/ArtMinigame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/school/ArtMinigame.vue -------------------------------------------------------------------------------- /src/components/partial/school/BookLibrary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/school/BookLibrary.vue -------------------------------------------------------------------------------- /src/components/partial/school/BookUpgrade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/school/BookUpgrade.vue -------------------------------------------------------------------------------- /src/components/partial/school/ChemistryMinigame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/school/ChemistryMinigame.vue -------------------------------------------------------------------------------- /src/components/partial/school/FeatureSelectDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/school/FeatureSelectDisplay.vue -------------------------------------------------------------------------------- /src/components/partial/school/HistoryMinigame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/school/HistoryMinigame.vue -------------------------------------------------------------------------------- /src/components/partial/school/LiteratureMinigame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/school/LiteratureMinigame.vue -------------------------------------------------------------------------------- /src/components/partial/school/MathMinigame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/school/MathMinigame.vue -------------------------------------------------------------------------------- /src/components/partial/school/Subject.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/school/Subject.vue -------------------------------------------------------------------------------- /src/components/partial/school/SubjectList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/school/SubjectList.vue -------------------------------------------------------------------------------- /src/components/partial/settings/Item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/settings/Item.vue -------------------------------------------------------------------------------- /src/components/partial/settings/Keybind.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/settings/Keybind.vue -------------------------------------------------------------------------------- /src/components/partial/settings/ThemeItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/settings/ThemeItem.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/AchievementMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/AchievementMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/CardPackInstantEffect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/CardPackInstantEffect.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/CardPackMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/CardPackMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/ErrorMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/ErrorMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/FeatureMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/FeatureMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/HeirloomMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/HeirloomMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/ImportMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/ImportMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/NoteMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/NoteMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/PrizeMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/PrizeMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/SaveMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/SaveMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/SchoolMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/SchoolMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/UnlockMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/UnlockMessage.vue -------------------------------------------------------------------------------- /src/components/partial/snackbar/UpdateMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/snackbar/UpdateMessage.vue -------------------------------------------------------------------------------- /src/components/partial/treasure/BuyItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/treasure/BuyItem.vue -------------------------------------------------------------------------------- /src/components/partial/treasure/ChanceList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/treasure/ChanceList.vue -------------------------------------------------------------------------------- /src/components/partial/treasure/ItemSlot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/treasure/ItemSlot.vue -------------------------------------------------------------------------------- /src/components/partial/treasure/StatList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/treasure/StatList.vue -------------------------------------------------------------------------------- /src/components/partial/treasure/TreasureEffectDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/treasure/TreasureEffectDisplay.vue -------------------------------------------------------------------------------- /src/components/partial/treasure/TreasureIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/treasure/TreasureIcon.vue -------------------------------------------------------------------------------- /src/components/partial/treasure/WildcardSlot.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/treasure/WildcardSlot.vue -------------------------------------------------------------------------------- /src/components/partial/upgrade/DisplayRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/upgrade/DisplayRow.vue -------------------------------------------------------------------------------- /src/components/partial/village/BuildingStatBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/BuildingStatBar.vue -------------------------------------------------------------------------------- /src/components/partial/village/CraftingItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/CraftingItem.vue -------------------------------------------------------------------------------- /src/components/partial/village/CraftingList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/CraftingList.vue -------------------------------------------------------------------------------- /src/components/partial/village/Job.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/Job.vue -------------------------------------------------------------------------------- /src/components/partial/village/JobList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/JobList.vue -------------------------------------------------------------------------------- /src/components/partial/village/OfferingInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/OfferingInventory.vue -------------------------------------------------------------------------------- /src/components/partial/village/OfferingItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/OfferingItem.vue -------------------------------------------------------------------------------- /src/components/partial/village/OfferingList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/OfferingList.vue -------------------------------------------------------------------------------- /src/components/partial/village/PolicyItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/PolicyItem.vue -------------------------------------------------------------------------------- /src/components/partial/village/PolicyList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/PolicyList.vue -------------------------------------------------------------------------------- /src/components/partial/village/PrestigeInventory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/PrestigeInventory.vue -------------------------------------------------------------------------------- /src/components/partial/village/PrestigeStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/PrestigeStatus.vue -------------------------------------------------------------------------------- /src/components/partial/village/Resources.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/partial/village/Resources.vue -------------------------------------------------------------------------------- /src/components/render/Consumable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/Consumable.vue -------------------------------------------------------------------------------- /src/components/render/Currency.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/Currency.vue -------------------------------------------------------------------------------- /src/components/render/CurrencyIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/CurrencyIcon.vue -------------------------------------------------------------------------------- /src/components/render/CurrentConfirm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/CurrentConfirm.vue -------------------------------------------------------------------------------- /src/components/render/CurrentNote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/CurrentNote.vue -------------------------------------------------------------------------------- /src/components/render/GoldenDustMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/GoldenDustMenu.vue -------------------------------------------------------------------------------- /src/components/render/MultName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/MultName.vue -------------------------------------------------------------------------------- /src/components/render/NoteSimple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/NoteSimple.vue -------------------------------------------------------------------------------- /src/components/render/NoteSystem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/NoteSystem.vue -------------------------------------------------------------------------------- /src/components/render/OfflineFeature.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/OfflineFeature.vue -------------------------------------------------------------------------------- /src/components/render/ParticleSpawner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/ParticleSpawner.vue -------------------------------------------------------------------------------- /src/components/render/PriceTag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/PriceTag.vue -------------------------------------------------------------------------------- /src/components/render/StatBreakdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/StatBreakdown.vue -------------------------------------------------------------------------------- /src/components/render/Upgrade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/Upgrade.vue -------------------------------------------------------------------------------- /src/components/render/UpgradeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/UpgradeList.vue -------------------------------------------------------------------------------- /src/components/render/UpgradeQueue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/render/UpgradeQueue.vue -------------------------------------------------------------------------------- /src/components/view/Achievement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Achievement.vue -------------------------------------------------------------------------------- /src/components/view/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Card.vue -------------------------------------------------------------------------------- /src/components/view/Cryolab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Cryolab.vue -------------------------------------------------------------------------------- /src/components/view/Debug.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Debug.vue -------------------------------------------------------------------------------- /src/components/view/Event.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Event.vue -------------------------------------------------------------------------------- /src/components/view/Farm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Farm.vue -------------------------------------------------------------------------------- /src/components/view/Gallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Gallery.vue -------------------------------------------------------------------------------- /src/components/view/Gem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Gem.vue -------------------------------------------------------------------------------- /src/components/view/General.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/General.vue -------------------------------------------------------------------------------- /src/components/view/Horde.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Horde.vue -------------------------------------------------------------------------------- /src/components/view/Info.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Info.vue -------------------------------------------------------------------------------- /src/components/view/Mining.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Mining.vue -------------------------------------------------------------------------------- /src/components/view/NewGame.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/NewGame.vue -------------------------------------------------------------------------------- /src/components/view/Note.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Note.vue -------------------------------------------------------------------------------- /src/components/view/OfflineSummary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/OfflineSummary.vue -------------------------------------------------------------------------------- /src/components/view/Patchnote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Patchnote.vue -------------------------------------------------------------------------------- /src/components/view/Relic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Relic.vue -------------------------------------------------------------------------------- /src/components/view/ResetProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/ResetProgress.vue -------------------------------------------------------------------------------- /src/components/view/School.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/School.vue -------------------------------------------------------------------------------- /src/components/view/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Settings.vue -------------------------------------------------------------------------------- /src/components/view/StatOverview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/StatOverview.vue -------------------------------------------------------------------------------- /src/components/view/TabDuplicate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/TabDuplicate.vue -------------------------------------------------------------------------------- /src/components/view/Treasure.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Treasure.vue -------------------------------------------------------------------------------- /src/components/view/Village.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/components/view/Village.vue -------------------------------------------------------------------------------- /src/gbPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/gbPlugin.js -------------------------------------------------------------------------------- /src/js/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/constants.js -------------------------------------------------------------------------------- /src/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/init.js -------------------------------------------------------------------------------- /src/js/modules/achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/achievement.js -------------------------------------------------------------------------------- /src/js/modules/achievement/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/achievement/relic.js -------------------------------------------------------------------------------- /src/js/modules/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/card.js -------------------------------------------------------------------------------- /src/js/modules/cryolab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/cryolab.js -------------------------------------------------------------------------------- /src/js/modules/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event.js -------------------------------------------------------------------------------- /src/js/modules/event/bank/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/bank/project.js -------------------------------------------------------------------------------- /src/js/modules/event/big.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/big.js -------------------------------------------------------------------------------- /src/js/modules/event/bloom/prize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/bloom/prize.js -------------------------------------------------------------------------------- /src/js/modules/event/bloom/tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/bloom/tick.js -------------------------------------------------------------------------------- /src/js/modules/event/bloom/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/bloom/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/event/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/card.js -------------------------------------------------------------------------------- /src/js/modules/event/cardList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/cardList.js -------------------------------------------------------------------------------- /src/js/modules/event/cinders/prize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/cinders/prize.js -------------------------------------------------------------------------------- /src/js/modules/event/cinders/producer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/cinders/producer.js -------------------------------------------------------------------------------- /src/js/modules/event/cinders/tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/cinders/tick.js -------------------------------------------------------------------------------- /src/js/modules/event/cinders/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/cinders/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/event/nightHunt/ingredientStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/nightHunt/ingredientStat.js -------------------------------------------------------------------------------- /src/js/modules/event/nightHunt/potion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/nightHunt/potion.js -------------------------------------------------------------------------------- /src/js/modules/event/nightHunt/prize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/nightHunt/prize.js -------------------------------------------------------------------------------- /src/js/modules/event/nightHunt/tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/nightHunt/tick.js -------------------------------------------------------------------------------- /src/js/modules/event/nightHunt/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/nightHunt/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/event/prize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/prize.js -------------------------------------------------------------------------------- /src/js/modules/event/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/relic.js -------------------------------------------------------------------------------- /src/js/modules/event/snowdown/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/snowdown/item.js -------------------------------------------------------------------------------- /src/js/modules/event/snowdown/prize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/snowdown/prize.js -------------------------------------------------------------------------------- /src/js/modules/event/snowdown/tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/snowdown/tick.js -------------------------------------------------------------------------------- /src/js/modules/event/snowdown/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/snowdown/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/event/summerFestival/building.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/summerFestival/building.js -------------------------------------------------------------------------------- /src/js/modules/event/summerFestival/prize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/summerFestival/prize.js -------------------------------------------------------------------------------- /src/js/modules/event/summerFestival/quest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/summerFestival/quest.js -------------------------------------------------------------------------------- /src/js/modules/event/summerFestival/tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/summerFestival/tick.js -------------------------------------------------------------------------------- /src/js/modules/event/summerFestival/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/summerFestival/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/event/weatherChaos/bait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/weatherChaos/bait.js -------------------------------------------------------------------------------- /src/js/modules/event/weatherChaos/fish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/weatherChaos/fish.js -------------------------------------------------------------------------------- /src/js/modules/event/weatherChaos/fishingRod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/weatherChaos/fishingRod.js -------------------------------------------------------------------------------- /src/js/modules/event/weatherChaos/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/weatherChaos/location.js -------------------------------------------------------------------------------- /src/js/modules/event/weatherChaos/prize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/weatherChaos/prize.js -------------------------------------------------------------------------------- /src/js/modules/event/weatherChaos/tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/weatherChaos/tick.js -------------------------------------------------------------------------------- /src/js/modules/event/weatherChaos/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/weatherChaos/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/event/weatherChaos/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/event/weatherChaos/weather.js -------------------------------------------------------------------------------- /src/js/modules/farm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm.js -------------------------------------------------------------------------------- /src/js/modules/farm/achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/achievement.js -------------------------------------------------------------------------------- /src/js/modules/farm/building.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/building.js -------------------------------------------------------------------------------- /src/js/modules/farm/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/card.js -------------------------------------------------------------------------------- /src/js/modules/farm/cardList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/cardList.js -------------------------------------------------------------------------------- /src/js/modules/farm/crop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/crop.js -------------------------------------------------------------------------------- /src/js/modules/farm/fertilizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/fertilizer.js -------------------------------------------------------------------------------- /src/js/modules/farm/gene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/gene.js -------------------------------------------------------------------------------- /src/js/modules/farm/geneLevels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/geneLevels.js -------------------------------------------------------------------------------- /src/js/modules/farm/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/relic.js -------------------------------------------------------------------------------- /src/js/modules/farm/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/farm/upgradePremium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/farm/upgradePremium.js -------------------------------------------------------------------------------- /src/js/modules/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery.js -------------------------------------------------------------------------------- /src/js/modules/gallery/achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery/achievement.js -------------------------------------------------------------------------------- /src/js/modules/gallery/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery/card.js -------------------------------------------------------------------------------- /src/js/modules/gallery/cardList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery/cardList.js -------------------------------------------------------------------------------- /src/js/modules/gallery/idea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery/idea.js -------------------------------------------------------------------------------- /src/js/modules/gallery/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery/relic.js -------------------------------------------------------------------------------- /src/js/modules/gallery/shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery/shape.js -------------------------------------------------------------------------------- /src/js/modules/gallery/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/gallery/upgradePremium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery/upgradePremium.js -------------------------------------------------------------------------------- /src/js/modules/gallery/upgradePrestige.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery/upgradePrestige.js -------------------------------------------------------------------------------- /src/js/modules/gallery/upgradeShape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gallery/upgradeShape.js -------------------------------------------------------------------------------- /src/js/modules/gem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gem.js -------------------------------------------------------------------------------- /src/js/modules/gem/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gem/card.js -------------------------------------------------------------------------------- /src/js/modules/gem/cardList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gem/cardList.js -------------------------------------------------------------------------------- /src/js/modules/gem/forge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gem/forge.js -------------------------------------------------------------------------------- /src/js/modules/gem/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/gem/relic.js -------------------------------------------------------------------------------- /src/js/modules/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/general.js -------------------------------------------------------------------------------- /src/js/modules/general/grobodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/general/grobodal.js -------------------------------------------------------------------------------- /src/js/modules/general/orladee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/general/orladee.js -------------------------------------------------------------------------------- /src/js/modules/general/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/general/relic.js -------------------------------------------------------------------------------- /src/js/modules/horde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde.js -------------------------------------------------------------------------------- /src/js/modules/horde/achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/achievement.js -------------------------------------------------------------------------------- /src/js/modules/horde/area/loveIsland.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/area/loveIsland.js -------------------------------------------------------------------------------- /src/js/modules/horde/area/monkeyJungle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/area/monkeyJungle.js -------------------------------------------------------------------------------- /src/js/modules/horde/area/warzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/area/warzone.js -------------------------------------------------------------------------------- /src/js/modules/horde/battlePass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/battlePass.js -------------------------------------------------------------------------------- /src/js/modules/horde/boss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/boss.js -------------------------------------------------------------------------------- /src/js/modules/horde/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/card.js -------------------------------------------------------------------------------- /src/js/modules/horde/cardList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/cardList.js -------------------------------------------------------------------------------- /src/js/modules/horde/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/element.js -------------------------------------------------------------------------------- /src/js/modules/horde/enemyType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/enemyType.js -------------------------------------------------------------------------------- /src/js/modules/horde/equipment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/equipment.js -------------------------------------------------------------------------------- /src/js/modules/horde/fighterClass/adventurer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/fighterClass/adventurer.js -------------------------------------------------------------------------------- /src/js/modules/horde/fighterClass/archer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/fighterClass/archer.js -------------------------------------------------------------------------------- /src/js/modules/horde/fighterClass/assassin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/fighterClass/assassin.js -------------------------------------------------------------------------------- /src/js/modules/horde/fighterClass/cultist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/fighterClass/cultist.js -------------------------------------------------------------------------------- /src/js/modules/horde/fighterClass/knight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/fighterClass/knight.js -------------------------------------------------------------------------------- /src/js/modules/horde/fighterClass/mage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/fighterClass/mage.js -------------------------------------------------------------------------------- /src/js/modules/horde/fighterClass/pirate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/fighterClass/pirate.js -------------------------------------------------------------------------------- /src/js/modules/horde/fighterClass/scholar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/fighterClass/scholar.js -------------------------------------------------------------------------------- /src/js/modules/horde/fighterClass/shaman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/fighterClass/shaman.js -------------------------------------------------------------------------------- /src/js/modules/horde/fighterClass/undead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/fighterClass/undead.js -------------------------------------------------------------------------------- /src/js/modules/horde/heirloom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/heirloom.js -------------------------------------------------------------------------------- /src/js/modules/horde/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/relic.js -------------------------------------------------------------------------------- /src/js/modules/horde/sigil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/sigil.js -------------------------------------------------------------------------------- /src/js/modules/horde/sigil_boss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/sigil_boss.js -------------------------------------------------------------------------------- /src/js/modules/horde/tower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/tower.js -------------------------------------------------------------------------------- /src/js/modules/horde/trinket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/trinket.js -------------------------------------------------------------------------------- /src/js/modules/horde/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/horde/upgrade2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/upgrade2.js -------------------------------------------------------------------------------- /src/js/modules/horde/upgradePremium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/upgradePremium.js -------------------------------------------------------------------------------- /src/js/modules/horde/upgradePrestige.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/horde/upgradePrestige.js -------------------------------------------------------------------------------- /src/js/modules/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/meta.js -------------------------------------------------------------------------------- /src/js/modules/migration/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/helper.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_1_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_1_0.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_1_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_1_2.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_3_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_3_0.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_3_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_3_4.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_3_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_3_5.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_4_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_4_0.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_4_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_4_1.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_5_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_5_0.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_5_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_5_1.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_5_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_5_3.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_5_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_5_4.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_5_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_5_6.js -------------------------------------------------------------------------------- /src/js/modules/migration/v1_6_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/migration/v1_6_0.js -------------------------------------------------------------------------------- /src/js/modules/mining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining.js -------------------------------------------------------------------------------- /src/js/modules/mining/achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/achievement.js -------------------------------------------------------------------------------- /src/js/modules/mining/beacon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/beacon.js -------------------------------------------------------------------------------- /src/js/modules/mining/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/card.js -------------------------------------------------------------------------------- /src/js/modules/mining/cardList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/cardList.js -------------------------------------------------------------------------------- /src/js/modules/mining/enhancement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/enhancement.js -------------------------------------------------------------------------------- /src/js/modules/mining/ore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/ore.js -------------------------------------------------------------------------------- /src/js/modules/mining/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/relic.js -------------------------------------------------------------------------------- /src/js/modules/mining/smeltery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/smeltery.js -------------------------------------------------------------------------------- /src/js/modules/mining/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/mining/upgrade2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/upgrade2.js -------------------------------------------------------------------------------- /src/js/modules/mining/upgradePremium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/upgradePremium.js -------------------------------------------------------------------------------- /src/js/modules/mining/upgradePrestige.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/mining/upgradePrestige.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/patchnotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/patchnotes.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_0_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_0_0.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_0_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_0_1.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_1_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_1_0.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_1_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_1_1.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_1_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_1_2.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_2_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_2_0.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_3_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_3_0.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_3_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_3_1.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_3_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_3_2.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_3_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_3_3.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_3_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_3_4.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_3_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_3_5.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_3_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_3_6.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_4_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_4_0.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_4_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_4_1.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_4_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_4_2.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_5_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_5_0.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_5_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_5_1.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_5_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_5_2.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_5_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_5_3.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_5_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_5_4.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_5_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_5_5.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_5_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_5_6.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_5_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_5_7.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_5_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_5_8.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_6_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_6_0.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_6_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_6_1.js -------------------------------------------------------------------------------- /src/js/modules/patchnote/v1_6_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/patchnote/v1_6_2.js -------------------------------------------------------------------------------- /src/js/modules/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/relic.js -------------------------------------------------------------------------------- /src/js/modules/relic/glyph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/relic/glyph.js -------------------------------------------------------------------------------- /src/js/modules/school.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/school.js -------------------------------------------------------------------------------- /src/js/modules/school/bookFarm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/school/bookFarm.js -------------------------------------------------------------------------------- /src/js/modules/school/bookGallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/school/bookGallery.js -------------------------------------------------------------------------------- /src/js/modules/school/bookHorde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/school/bookHorde.js -------------------------------------------------------------------------------- /src/js/modules/school/bookMining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/school/bookMining.js -------------------------------------------------------------------------------- /src/js/modules/school/bookVillage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/school/bookVillage.js -------------------------------------------------------------------------------- /src/js/modules/school/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/school/relic.js -------------------------------------------------------------------------------- /src/js/modules/school/upgradePremium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/school/upgradePremium.js -------------------------------------------------------------------------------- /src/js/modules/treasure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/treasure.js -------------------------------------------------------------------------------- /src/js/modules/treasure/effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/treasure/effect.js -------------------------------------------------------------------------------- /src/js/modules/treasure/modifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/treasure/modifier.js -------------------------------------------------------------------------------- /src/js/modules/treasure/upgradePremium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/treasure/upgradePremium.js -------------------------------------------------------------------------------- /src/js/modules/village.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village.js -------------------------------------------------------------------------------- /src/js/modules/village/achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/achievement.js -------------------------------------------------------------------------------- /src/js/modules/village/building.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/building.js -------------------------------------------------------------------------------- /src/js/modules/village/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/card.js -------------------------------------------------------------------------------- /src/js/modules/village/cardList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/cardList.js -------------------------------------------------------------------------------- /src/js/modules/village/craftingRecipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/craftingRecipe.js -------------------------------------------------------------------------------- /src/js/modules/village/job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/job.js -------------------------------------------------------------------------------- /src/js/modules/village/offering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/offering.js -------------------------------------------------------------------------------- /src/js/modules/village/policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/policy.js -------------------------------------------------------------------------------- /src/js/modules/village/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/relic.js -------------------------------------------------------------------------------- /src/js/modules/village/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/upgrade.js -------------------------------------------------------------------------------- /src/js/modules/village/upgrade2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/upgrade2.js -------------------------------------------------------------------------------- /src/js/modules/village/upgradePremium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/upgradePremium.js -------------------------------------------------------------------------------- /src/js/modules/village/upgradePrestige.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/modules/village/upgradePrestige.js -------------------------------------------------------------------------------- /src/js/savefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/savefile.js -------------------------------------------------------------------------------- /src/js/theme/autumnForest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/autumnForest.js -------------------------------------------------------------------------------- /src/js/theme/brown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/brown.js -------------------------------------------------------------------------------- /src/js/theme/candlelight.js: -------------------------------------------------------------------------------- 1 | export default { 2 | hasCustomBackground: true 3 | } 4 | -------------------------------------------------------------------------------- /src/js/theme/cherry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/cherry.js -------------------------------------------------------------------------------- /src/js/theme/colorful.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/colorful.js -------------------------------------------------------------------------------- /src/js/theme/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/colors.js -------------------------------------------------------------------------------- /src/js/theme/cyan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/cyan.js -------------------------------------------------------------------------------- /src/js/theme/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/default.js -------------------------------------------------------------------------------- /src/js/theme/factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/factory.js -------------------------------------------------------------------------------- /src/js/theme/forest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/forest.js -------------------------------------------------------------------------------- /src/js/theme/frozen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/frozen.js -------------------------------------------------------------------------------- /src/js/theme/green.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/green.js -------------------------------------------------------------------------------- /src/js/theme/grey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/grey.js -------------------------------------------------------------------------------- /src/js/theme/orange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/orange.js -------------------------------------------------------------------------------- /src/js/theme/pink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/pink.js -------------------------------------------------------------------------------- /src/js/theme/polar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/polar.js -------------------------------------------------------------------------------- /src/js/theme/prismatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/prismatic.js -------------------------------------------------------------------------------- /src/js/theme/purple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/purple.js -------------------------------------------------------------------------------- /src/js/theme/rain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/rain.js -------------------------------------------------------------------------------- /src/js/theme/red.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/red.js -------------------------------------------------------------------------------- /src/js/theme/sepia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/sepia.js -------------------------------------------------------------------------------- /src/js/theme/shades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/shades.js -------------------------------------------------------------------------------- /src/js/theme/sky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/sky.js -------------------------------------------------------------------------------- /src/js/theme/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/themes.js -------------------------------------------------------------------------------- /src/js/theme/waves.js: -------------------------------------------------------------------------------- 1 | export default { 2 | hasCustomBackground: true 3 | } 4 | -------------------------------------------------------------------------------- /src/js/theme/yellow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/theme/yellow.js -------------------------------------------------------------------------------- /src/js/tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/tick.js -------------------------------------------------------------------------------- /src/js/utils/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/utils/array.js -------------------------------------------------------------------------------- /src/js/utils/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/utils/color.js -------------------------------------------------------------------------------- /src/js/utils/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/utils/date.js -------------------------------------------------------------------------------- /src/js/utils/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/utils/file.js -------------------------------------------------------------------------------- /src/js/utils/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/utils/format.js -------------------------------------------------------------------------------- /src/js/utils/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/utils/math.js -------------------------------------------------------------------------------- /src/js/utils/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/utils/random.js -------------------------------------------------------------------------------- /src/js/utils/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/utils/string.js -------------------------------------------------------------------------------- /src/js/utils/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/js/utils/words.js -------------------------------------------------------------------------------- /src/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de.js -------------------------------------------------------------------------------- /src/lang/de/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/card.js -------------------------------------------------------------------------------- /src/lang/de/consumable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/consumable.js -------------------------------------------------------------------------------- /src/lang/de/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/currency.js -------------------------------------------------------------------------------- /src/lang/de/mult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/mult.js -------------------------------------------------------------------------------- /src/lang/de/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/note.js -------------------------------------------------------------------------------- /src/lang/de/patchnote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/patchnote.js -------------------------------------------------------------------------------- /src/lang/de/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/relic.js -------------------------------------------------------------------------------- /src/lang/de/stat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/stat.js -------------------------------------------------------------------------------- /src/lang/de/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/tag.js -------------------------------------------------------------------------------- /src/lang/de/unlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/unlock.js -------------------------------------------------------------------------------- /src/lang/de/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/de/upgrade.js -------------------------------------------------------------------------------- /src/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en.js -------------------------------------------------------------------------------- /src/lang/en/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/card.js -------------------------------------------------------------------------------- /src/lang/en/consumable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/consumable.js -------------------------------------------------------------------------------- /src/lang/en/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/currency.js -------------------------------------------------------------------------------- /src/lang/en/mult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/mult.js -------------------------------------------------------------------------------- /src/lang/en/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/note.js -------------------------------------------------------------------------------- /src/lang/en/patchnote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/patchnote.js -------------------------------------------------------------------------------- /src/lang/en/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/relic.js -------------------------------------------------------------------------------- /src/lang/en/stat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/stat.js -------------------------------------------------------------------------------- /src/lang/en/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/tag.js -------------------------------------------------------------------------------- /src/lang/en/unlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/unlock.js -------------------------------------------------------------------------------- /src/lang/en/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/lang/en/upgrade.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/main.js -------------------------------------------------------------------------------- /src/plugins/vuetify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/plugins/vuetify.js -------------------------------------------------------------------------------- /src/store/achievement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/achievement.js -------------------------------------------------------------------------------- /src/store/bloom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/bloom.js -------------------------------------------------------------------------------- /src/store/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/card.js -------------------------------------------------------------------------------- /src/store/cinders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/cinders.js -------------------------------------------------------------------------------- /src/store/consumable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/consumable.js -------------------------------------------------------------------------------- /src/store/cryolab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/cryolab.js -------------------------------------------------------------------------------- /src/store/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/currency.js -------------------------------------------------------------------------------- /src/store/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/event.js -------------------------------------------------------------------------------- /src/store/farm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/farm.js -------------------------------------------------------------------------------- /src/store/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/gallery.js -------------------------------------------------------------------------------- /src/store/gem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/gem.js -------------------------------------------------------------------------------- /src/store/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/general.js -------------------------------------------------------------------------------- /src/store/horde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/horde.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/meta.js -------------------------------------------------------------------------------- /src/store/mining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/mining.js -------------------------------------------------------------------------------- /src/store/mult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/mult.js -------------------------------------------------------------------------------- /src/store/nightHunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/nightHunt.js -------------------------------------------------------------------------------- /src/store/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/note.js -------------------------------------------------------------------------------- /src/store/relic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/relic.js -------------------------------------------------------------------------------- /src/store/school.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/school.js -------------------------------------------------------------------------------- /src/store/snowdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/snowdown.js -------------------------------------------------------------------------------- /src/store/stat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/stat.js -------------------------------------------------------------------------------- /src/store/summerFestival.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/summerFestival.js -------------------------------------------------------------------------------- /src/store/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/system.js -------------------------------------------------------------------------------- /src/store/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/tag.js -------------------------------------------------------------------------------- /src/store/treasure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/treasure.js -------------------------------------------------------------------------------- /src/store/unlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/unlock.js -------------------------------------------------------------------------------- /src/store/upgrade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/upgrade.js -------------------------------------------------------------------------------- /src/store/village.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/village.js -------------------------------------------------------------------------------- /src/store/weatherChaos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/src/store/weatherChaos.js -------------------------------------------------------------------------------- /test/unit/currency.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/test/unit/currency.test.js -------------------------------------------------------------------------------- /test/unit/event.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/test/unit/event.test.js -------------------------------------------------------------------------------- /test/unit/mult.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/test/unit/mult.test.js -------------------------------------------------------------------------------- /test/unit/setup.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/test/unit/setup.test.js -------------------------------------------------------------------------------- /test/unit/stat.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/test/unit/stat.test.js -------------------------------------------------------------------------------- /test/unit/treasure.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/test/unit/treasure.test.js -------------------------------------------------------------------------------- /test/unit/unlock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/test/unit/unlock.test.js -------------------------------------------------------------------------------- /test/unit/upgrade.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/test/unit/upgrade.test.js -------------------------------------------------------------------------------- /test/unit/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/test/unit/utils.test.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tendsty/gooboo/HEAD/yarn.lock --------------------------------------------------------------------------------