├── .gitattributes ├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── STSSlimeMod.iml ├── pom.xml ├── slimebound.iml ├── src └── main │ ├── java │ └── slimeboundclassic │ │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── slimeboundmod │ │ │ └── slimeboundmod │ │ │ ├── pom.properties │ │ │ └── pom.xml │ │ ├── SlimeboundMod.java │ │ ├── actions │ │ ├── AddPreparedAction.java │ │ ├── CheckForSixHexAction.java │ │ ├── CoordinateAction.java │ │ ├── CopyCardAction.java │ │ ├── DissolveAction.java │ │ ├── DividerAction.java │ │ ├── DoublePoisonSlimedWeakAction.java │ │ ├── ExhumeToDrawAction.java │ │ ├── FinishingTackleAction.java │ │ ├── FormABlockadeAction.java │ │ ├── GangUpAction.java │ │ ├── MakeTempCardInHandActionReduceCost.java │ │ ├── MassFeedAction.java │ │ ├── MassRepurposeAction.java │ │ ├── MorphCardAction.java │ │ ├── MultiLickAction.java │ │ ├── OverexertionAction.java │ │ ├── PlayExhausted0CostAction.java │ │ ├── PreventCurrentOverMaxHealthAction.java │ │ ├── RandomAutomatonCardAction.java │ │ ├── RandomAwakanedCardAction.java │ │ ├── RandomChampCardAction.java │ │ ├── RandomCollectorCardAction.java │ │ ├── RandomGuardianCardAction.java │ │ ├── RandomHexaghostCardAction.java │ │ ├── RandomLickCardAction.java │ │ ├── RandomShapesCardAction.java │ │ ├── RandomStudyCardAction.java │ │ ├── RandomTimeEaterCardAction.java │ │ ├── ReturnRandom0Cost.java │ │ ├── SlimeAutoAttack.java │ │ ├── SlimeAutoCultistBuff.java │ │ ├── SlimeBuffUpgraded.java │ │ ├── SlimeSpawnAction.java │ │ ├── SlimepotheosisAction.java │ │ ├── SlimesplosionAction.java │ │ ├── TendrilFlailAction.java │ │ ├── TriggerSlimeAttacksAction.java │ │ ├── TriggerStartOfTurnEffectsAction.java │ │ ├── TrigggerSpecificSlimeAttackAction.java │ │ └── VampireIntoBlockDamageAction.java │ │ ├── cards │ │ ├── AbstractSlimeboundCard.java │ │ ├── AcidGelatin.java │ │ ├── AcidTongue.java │ │ ├── BestDefense.java │ │ ├── CaCaw.java │ │ ├── ChargeUp.java │ │ ├── CheckThePlaybook.java │ │ ├── Chomp.java │ │ ├── Collect.java │ │ ├── ComboTackle.java │ │ ├── CorrosiveSpit.java │ │ ├── DarkVoid.java │ │ ├── DecasProtection.java │ │ ├── Defend_Slimebound.java │ │ ├── DefensiveMode.java │ │ ├── DefensiveStance.java │ │ ├── DisruptingSlam.java │ │ ├── Dissolve.java │ │ ├── DivideAndConquer.java │ │ ├── DivideAndConquerConquer.java │ │ ├── DivideAndConquerDivide.java │ │ ├── DonusPower.java │ │ ├── DouseInSlime.java │ │ ├── DuplicatedForm.java │ │ ├── Equalize.java │ │ ├── FaceSlap.java │ │ ├── FeelOurPain.java │ │ ├── FinishingTackle.java │ │ ├── Flail.java │ │ ├── FlameTackle.java │ │ ├── FormOfPuddle.java │ │ ├── Gluttony.java │ │ ├── GoopArmor.java │ │ ├── GoopSpray.java │ │ ├── GoopTackle.java │ │ ├── Grow.java │ │ ├── GrowthPunch.java │ │ ├── GuardianWhirl.java │ │ ├── HauntingLick.java │ │ ├── HeadSlam.java │ │ ├── Hexaburn.java │ │ ├── HungryTackle.java │ │ ├── Icky.java │ │ ├── ItLooksTasty.java │ │ ├── LastStand.java │ │ ├── LeadByExample.java │ │ ├── LeechEnergy.java │ │ ├── LeechLife.java │ │ ├── LeechingTouch.java │ │ ├── LevelUp.java │ │ ├── Lick.java │ │ ├── LivingWall.java │ │ ├── ManipulateTime.java │ │ ├── MassFeed.java │ │ ├── MassRepurpose.java │ │ ├── MegaLick.java │ │ ├── MinionMaster.java │ │ ├── OozeBath.java │ │ ├── Overexert.java │ │ ├── PoisonLick.java │ │ ├── PolyBeam.java │ │ ├── Prepare.java │ │ ├── PrepareCrush.java │ │ ├── PressTheAttack.java │ │ ├── ProtectTheBoss.java │ │ ├── QuickStudy.java │ │ ├── RainOfGoop.java │ │ ├── Recollect.java │ │ ├── Recycling.java │ │ ├── RejuvenatingLick.java │ │ ├── Replication.java │ │ ├── Repurpose.java │ │ ├── RollThrough.java │ │ ├── SamplingLick.java │ │ ├── Sear.java │ │ ├── SelfFormingGoo.java │ │ ├── ServeAndProtect.java │ │ ├── ServeAndProtectProtect.java │ │ ├── ServeAndProtectServe.java │ │ ├── SlimeBarrage.java │ │ ├── SlimeBeam.java │ │ ├── SlimeBrawl.java │ │ ├── SlimeCrush.java │ │ ├── SlimeSpikes.java │ │ ├── SlimeTap.java │ │ ├── SoulSicken.java │ │ ├── Split.java │ │ ├── SplitAcid.java │ │ ├── SplitBronze.java │ │ ├── SplitBruiser.java │ │ ├── SplitCultist.java │ │ ├── SplitGhostflame.java │ │ ├── SplitLeeching.java │ │ ├── SplitLicking.java │ │ ├── SplitTorchHead.java │ │ ├── Strike_Slimebound.java │ │ ├── StudyTheSpire.java │ │ ├── SuperSplit.java │ │ ├── Tackle.java │ │ ├── Teamwork.java │ │ ├── TendrilStrike.java │ │ ├── TimeRipple.java │ │ ├── TongueLash.java │ │ ├── UsefulSlime.java │ │ ├── VenomTackle.java │ │ ├── ViciousTackle.java │ │ ├── WasteNot.java │ │ ├── YouAreMine.java │ │ ├── zzzAbsorbAll.java │ │ ├── zzzAccelerateToxins.java │ │ ├── zzzDuplicateSlimes.java │ │ ├── zzzFocusedLick.java │ │ ├── zzzGangUp.java │ │ ├── zzzMaxSlimes.java │ │ ├── zzzPrepareBeam.java │ │ ├── zzzPrepareDivider.java │ │ ├── zzzRollThrough.java │ │ ├── zzzSlimeSlamOLD.java │ │ ├── zzzSlimepotheosis.java │ │ ├── zzzSlimesplosion.java │ │ ├── zzzSoTasty.java │ │ ├── zzzStrayGoop.java │ │ ├── zzzStrikeFrailPoint.java │ │ ├── zzzStudyAutomaton.java │ │ ├── zzzStudyAwakened.java │ │ ├── zzzStudyChamp.java │ │ ├── zzzStudyCollector.java │ │ ├── zzzStudyGuardian.java │ │ ├── zzzStudyHexaghost.java │ │ ├── zzzStudyShapes.java │ │ └── zzzStudyTimeEater.java │ │ ├── characters │ │ └── SlimeboundCharacter.java │ │ ├── dailymods │ │ └── AllSplit.java │ │ ├── events │ │ ├── ArtOfSlimeWar.java │ │ ├── Hunted.java │ │ └── WorldOfGoopSlimebound.java │ │ ├── helpers │ │ ├── PoisonVariable.java │ │ ├── SelfDamageVariable.java │ │ ├── SlimeboundTags.java │ │ └── SlimedVariable.java │ │ ├── monsters │ │ ├── AcidSlimeLDailyMod.java │ │ ├── SlimeBossDailyMod.java │ │ └── SpikeSlimeLDailyMod.java │ │ ├── orbs │ │ ├── AttackSlime.java │ │ ├── BronzeSlime.java │ │ ├── CultistSlime.java │ │ ├── GreedOozeSlime.java │ │ ├── HexSlime.java │ │ ├── PoisonSlime.java │ │ ├── ScrapOozeSlime.java │ │ ├── ShieldSlime.java │ │ ├── SlimingSlime.java │ │ ├── SpawnedSlime.java │ │ ├── TorchHeadSlime.java │ │ └── zzzDebuffSlime.java │ │ ├── patches │ │ ├── AbstractCardEnum.java │ │ ├── CampfirePatch.java │ │ ├── CityBGPatch.java │ │ ├── CityRemoveEventPatch.java │ │ ├── CombatDrawPositionPatch.java │ │ ├── EmptyOrbSlotGraphicsPatch.java │ │ ├── EnergyPanelMovePatch.java │ │ ├── EvokeOrbPatch.java │ │ ├── GoopGlowEffectPatch.java │ │ ├── HealthBarRenderBackPatch.java │ │ ├── IntangiblePuddlePatch.java │ │ ├── JungleBGPatch.java │ │ ├── LibraryTypeEnum.java │ │ ├── MakeUsefulSlimeInHandPatch.java │ │ ├── OrbPositionPatch.java │ │ ├── PreBlockPowersTriggerPatch.java │ │ ├── RefreshEnergyEffectMovePatch.java │ │ ├── RenderHealthTextPatch.java │ │ ├── SadisticNaturePatch.java │ │ ├── ScrapOozePatch.java │ │ ├── ScrapOozePatchPre.java │ │ ├── SlimeBossCheck.java │ │ ├── SlimeBossMaxHPChange.java │ │ ├── SlimeTalk.java │ │ ├── SlimeTalkAcidL.java │ │ ├── SlimeTalkAcidM.java │ │ ├── SlimeTalkAcidS.java │ │ ├── SlimeTalkCollector.java │ │ ├── SlimeTalkDark.java │ │ ├── SlimeTalkSpikeL.java │ │ ├── SlimeTalkSpikeM.java │ │ ├── SlimeTalkSpikeS.java │ │ ├── SlimeboundEnum.java │ │ ├── SlimeboundMetricsPatch.java │ │ ├── StrikeEffectPatch.java │ │ ├── TokeOptionPatch.java │ │ ├── TokePatch.java │ │ ├── UnlockDebugPatch.java │ │ └── VictoryPatch.java │ │ ├── potions │ │ ├── SlimedPotion.java │ │ ├── SlimyTonguePotion.java │ │ ├── SpawnSlimePotion.java │ │ └── ThreeZeroPotion.java │ │ ├── powers │ │ ├── AcidTonguePower.java │ │ ├── AcidTonguePowerUpgraded.java │ │ ├── AwakenedOnePower.java │ │ ├── BuffAttackSlimesPower.java │ │ ├── BuffSecondarySlimeEffectsPower.java │ │ ├── BuffShieldSlimesPower.java │ │ ├── BuffSlimingSlimesPower.java │ │ ├── ComboAttackPower.java │ │ ├── DuplicatedFormEnergyPower.java │ │ ├── DuplicatedFormNoHealPower.java │ │ ├── DuplicatedFormPower.java │ │ ├── EnergizedSlimeboundPower.java │ │ ├── FirmFortitudePower.java │ │ ├── GluttonyPower.java │ │ ├── GluttonyPowerUpgraded.java │ │ ├── GoopArmorPower.java │ │ ├── GoopIntoPoisonPower.java │ │ ├── GreedRespawnPower.java │ │ ├── HexSlimePerTurnPower.java │ │ ├── LoseSlimesPower.java │ │ ├── LoseThornsPower.java │ │ ├── NextTurnBlockAndGoopPower.java │ │ ├── NextTurnGainDivider.java │ │ ├── NextTurnGainHyperBeam.java │ │ ├── NextTurnGainSlimeCrush.java │ │ ├── NextTurnGainStrengthPower.java │ │ ├── PolyBeamAgainPower.java │ │ ├── PolyBeamAgainPowerUpgraded.java │ │ ├── PotencyPower.java │ │ ├── PreventSlimeDecayPower.java │ │ ├── RecyclingPower.java │ │ ├── RecyclingPowerUpgraded.java │ │ ├── RetainCardsOneTurnPower.java │ │ ├── ScrapRespawnPower.java │ │ ├── SearingPower.java │ │ ├── SelfDamageSlimedPower.java │ │ ├── SelfFormingGooPower.java │ │ ├── SlimeRitualPower.java │ │ ├── SlimeSacrificePower.java │ │ ├── SlimedPower.java │ │ ├── SlimedThornsPower.java │ │ ├── SplitDailyTriggerPower.java │ │ ├── StudyAutomatonPower.java │ │ ├── StudyAutomatonPowerUpgraded.java │ │ ├── StudyAwakenedPower.java │ │ ├── StudyAwakenedPowerUpgraded.java │ │ ├── StudyChampPower.java │ │ ├── StudyChampPowerUpgraded.java │ │ ├── StudyCollectorPower.java │ │ ├── StudyCollectorPowerUpgraded.java │ │ ├── StudyGuardianPower.java │ │ ├── StudyGuardianPowerUpgraded.java │ │ ├── StudyHexaghostPower.java │ │ ├── StudyHexaghostPowerUpgraded.java │ │ ├── StudyShapesPower.java │ │ ├── StudyShapesPowerUpgraded.java │ │ ├── StudyTimeEaterPower.java │ │ ├── StudyTimeEaterPowerUpgraded.java │ │ ├── StunnedPower.java │ │ ├── TackleBuffPower.java │ │ ├── TackleDebuffPower.java │ │ └── TackleSelfDamagePreventPower.java │ │ ├── relics │ │ ├── AbsorbEndCombat.java │ │ ├── AbsorbEndCombatUpgraded.java │ │ ├── AggressiveSlimeRelic.java │ │ ├── DailySplitModRelic.java │ │ ├── GreedOozeRelic.java │ │ ├── MaxSlimesRelic.java │ │ ├── PotencyRelic.java │ │ ├── PreparedRelic.java │ │ ├── ScrapOozeRelic.java │ │ ├── SelfDamagePreventRelic.java │ │ ├── SlimedSkullRelic.java │ │ ├── SlimedTailRelic.java │ │ └── StudyCardRelic.java │ │ ├── ui │ │ └── ScrapBonfireOption.java │ │ └── vfx │ │ ├── DoubleSlimeParticle.java │ │ ├── FakeFlashAtkImgEffect.java │ │ ├── GoldCoinsParticle.java │ │ ├── GoopCardFlash.java │ │ ├── GreedGlowParticle.java │ │ ├── GreenBeam.java │ │ ├── GreenBeamEffect.java │ │ ├── LeechEffect.java │ │ ├── LeechEffectParticle.java │ │ ├── LickEffect.java │ │ ├── ScrapGlowParticle.java │ │ ├── ScrapParticle.java │ │ ├── SearEffect.java │ │ ├── ShieldParticleEffectInFront.java │ │ ├── SlimeBuffParticleEffect.java │ │ ├── SlimeDeathParticleEffect.java │ │ ├── SlimeDripsEffect.java │ │ ├── SlimeDripsEffectPurple.java │ │ ├── SlimeFlareEffect.java │ │ ├── SlimeIntentEffect.java │ │ ├── SlimeIntentMovement.java │ │ ├── SlimeIntentMovementEffect.java │ │ ├── SlimeIntentParticle.java │ │ ├── SlimeProjectileEffect.java │ │ ├── SlimeSpawnProjectile.java │ │ ├── SlimeSpawnProjectileDeath.java │ │ ├── SlimeWaterDropEffect.java │ │ ├── SlimeWaterDropEffectPurple.java │ │ ├── SticksParticle.java │ │ ├── SticksParticleRight.java │ │ └── TinyHatParticle.java │ └── resources │ ├── ModTheSpire.json │ ├── SlimeboundClassicImages │ ├── 512 │ │ ├── bg_attack_slimebound.png │ │ ├── bg_power_slimebound.png │ │ ├── bg_skill_slimebound.png │ │ ├── card_slimebound_orb.png │ │ └── card_small_orb.png │ ├── 1024 │ │ ├── bg_attack_slimebound.png │ │ ├── bg_power_slimebound.png │ │ ├── bg_power_yellow.png │ │ ├── bg_skill_slimebound.png │ │ └── card_slimebound_orb.png │ ├── badge.png │ ├── cards │ │ ├── QuickStudy.png │ │ ├── QuickStudy_p.png │ │ ├── absorball.png │ │ ├── absorball_p.png │ │ ├── acceleratetoxins.png │ │ ├── acceleratetoxins_p.png │ │ ├── acidgelatin.png │ │ ├── acidgelatin_p.png │ │ ├── acidtongue.png │ │ ├── acidtongue_p.png │ │ ├── alltogether.png │ │ ├── alltogether_p.png │ │ ├── attackSlime.png │ │ ├── attackSlime_p.png │ │ ├── bodyblow.png │ │ ├── bodyblow_p.png │ │ ├── chargeup.png │ │ ├── chargeup_p.png │ │ ├── chomp.png │ │ ├── chomp_p.png │ │ ├── circleofpower.png │ │ ├── circleofpower_p.png │ │ ├── collect.png │ │ ├── collect_p.png │ │ ├── conquer.png │ │ ├── conquer_p.png │ │ ├── coordinatedstrike.png │ │ ├── coordinatedstrike_p.png │ │ ├── corrosivespit.png │ │ ├── corrosivespit_p.png │ │ ├── corrosivetackle.png │ │ ├── corrosivetackle_p.png │ │ ├── darkvoid.png │ │ ├── darkvoid_p.png │ │ ├── defendSlime.png │ │ ├── defendSlime_p.png │ │ ├── defensivemode.png │ │ ├── defensivemode_p.png │ │ ├── defensivestance.png │ │ ├── defensivestance_p.png │ │ ├── dissolve.png │ │ ├── dissolve_p.png │ │ ├── divider.png │ │ ├── divider_p.png │ │ ├── doubleeverything.png │ │ ├── doubleeverything_p.png │ │ ├── douseinslime.png │ │ ├── douseinslime_p.png │ │ ├── duplicatedform.png │ │ ├── duplicatedform_p.png │ │ ├── duplicateslimes.png │ │ ├── duplicateslimes_p.png │ │ ├── efficiency.png │ │ ├── efficiency_p.png │ │ ├── eventtackle.png │ │ ├── eventtackle_p.png │ │ ├── faceslap.png │ │ ├── faceslap_p.png │ │ ├── finishingtackle.png │ │ ├── finishingtackle_p.png │ │ ├── firmfortitude.png │ │ ├── firmfortitude_p.png │ │ ├── flail.png │ │ ├── flail_p.png │ │ ├── flametackle.png │ │ ├── flametackle_p.png │ │ ├── focusedlick.png │ │ ├── focusedlick_p.png │ │ ├── formablockade.png │ │ ├── formablockade_p.png │ │ ├── formofpuddle.png │ │ ├── formofpuddle_p.png │ │ ├── gluttony.png │ │ ├── gluttony_p.png │ │ ├── goopspray.png │ │ ├── goopspray_p.png │ │ ├── grow.png │ │ ├── grow_p.png │ │ ├── guardianwhirl.png │ │ ├── guardianwhirl_p.png │ │ ├── hardened.png │ │ ├── hardened_p.png │ │ ├── hauntinglick.png │ │ ├── hauntinglick_p.png │ │ ├── headslam.png │ │ ├── headslam_p.png │ │ ├── hyper_beam.png │ │ ├── hyper_beam_p.png │ │ ├── icky.png │ │ ├── icky_p.png │ │ ├── itlookstasty.png │ │ ├── itlookstasty_p.png │ │ ├── knowledgepool.png │ │ ├── knowledgepool_p.png │ │ ├── laststand.png │ │ ├── laststand_p.png │ │ ├── leechenergy.png │ │ ├── leechenergy_p.png │ │ ├── leechingstrike.png │ │ ├── leechingstrike_p.png │ │ ├── leechingtouch.png │ │ ├── leechingtouch_p.png │ │ ├── levelup.png │ │ ├── levelup_p.png │ │ ├── lick.png │ │ ├── lick_p.png │ │ ├── makesomeroom.png │ │ ├── makesomeroom_p.png │ │ ├── massfeed.png │ │ ├── massfeed_p.png │ │ ├── megalick.png │ │ ├── megalick_p.png │ │ ├── minionmaster.png │ │ ├── minionmaster_p.png │ │ ├── morphcard.png │ │ ├── morphcard_p.png │ │ ├── morpheverything.png │ │ ├── morpheverything_p.png │ │ ├── overexertion.png │ │ ├── overexertion_p.png │ │ ├── playbook.png │ │ ├── playbook_p.png │ │ ├── poisonlick.png │ │ ├── poisonlick_p.png │ │ ├── poisontackle.png │ │ ├── poisontackle_p.png │ │ ├── polybeam.png │ │ ├── polybeam_p.png │ │ ├── prepare.png │ │ ├── prepare_p.png │ │ ├── preparedivider.png │ │ ├── preparedivider_p.png │ │ ├── preparingbeam.png │ │ ├── preparingbeam_p.png │ │ ├── preparingcrush.png │ │ ├── preparingcrush_p.png │ │ ├── protect.png │ │ ├── protect_p.png │ │ ├── quickspikes.png │ │ ├── quickspikes_p.png │ │ ├── quicktackle.png │ │ ├── quicktackle_p.png │ │ ├── rainofgoop.png │ │ ├── rainofgoop_p.png │ │ ├── rapidheal.png │ │ ├── rapidheal_p.png │ │ ├── reckless.png │ │ ├── reckless_p.png │ │ ├── recollect.png │ │ ├── recollect_p.png │ │ ├── recycling.png │ │ ├── recycling_p.png │ │ ├── retaliate.png │ │ ├── retaliate_p.png │ │ ├── ripple.png │ │ ├── ripple_p.png │ │ ├── ritual.png │ │ ├── ritual_p.png │ │ ├── rollthrough.png │ │ ├── rollthrough_p.png │ │ ├── samplinglick.png │ │ ├── samplinglick_p.png │ │ ├── sear.png │ │ ├── sear_p.png │ │ ├── sickeningtendril.png │ │ ├── sickeningtendril_p.png │ │ ├── slimebarrage.png │ │ ├── slimebarrage_p.png │ │ ├── slimecrush.png │ │ ├── slimecrush_p.png │ │ ├── slimepotheosis.png │ │ ├── slimepotheosis_p.png │ │ ├── slimepunch.png │ │ ├── slimepunch_p.png │ │ ├── slimesacrifice.png │ │ ├── slimesacrifice_p.png │ │ ├── slimetap.png │ │ ├── slimetap_p.png │ │ ├── slimewave.png │ │ ├── slimewave_p.png │ │ ├── spiked.png │ │ ├── spiked_p.png │ │ ├── split.png │ │ ├── split_p.png │ │ ├── splitaggressive.png │ │ ├── splitaggressive_p.png │ │ ├── splitbronze.png │ │ ├── splitbronze_p.png │ │ ├── splitbruisertoxic.png │ │ ├── splitbruisertoxic_p.png │ │ ├── splitcultist.png │ │ ├── splitcultist_p.png │ │ ├── splithex.png │ │ ├── splithex_p.png │ │ ├── splitlicking.png │ │ ├── splitlicking_p.png │ │ ├── splitlickingshield.png │ │ ├── splitlickingshield_p.png │ │ ├── splitshield.png │ │ ├── splitshield_p.png │ │ ├── splitsludging.png │ │ ├── splitsludging_p.png │ │ ├── splittingstrike.png │ │ ├── splittingstrike_p.png │ │ ├── splittorchhead.png │ │ ├── splittorchhead_p.png │ │ ├── splittoxic.png │ │ ├── splittoxic_p.png │ │ ├── squareofprotection.png │ │ ├── squareofprotection_p.png │ │ ├── stoptime.png │ │ ├── stoptime_p.png │ │ ├── straygoop.png │ │ ├── straygoop_p.png │ │ ├── strikefrail.png │ │ ├── strikefrail_p.png │ │ ├── strikeweak.png │ │ ├── strikeweak_p.png │ │ ├── studyautomaton.png │ │ ├── studyautomaton_p.png │ │ ├── studyawakened.png │ │ ├── studyawakened_p.png │ │ ├── studychamp.png │ │ ├── studychamp_p.png │ │ ├── studycollector.png │ │ ├── studycollector_p.png │ │ ├── studyguardian.png │ │ ├── studyguardian_p.png │ │ ├── studyhexaghost.png │ │ ├── studyhexaghost_p.png │ │ ├── studyshapes.png │ │ ├── studyshapes_p.png │ │ ├── studyspire.png │ │ ├── studyspire_p.png │ │ ├── studytimeeater.png │ │ ├── studytimeeater_p.png │ │ ├── supersplit.png │ │ ├── supersplit_p.png │ │ ├── tackle.png │ │ ├── tackle_p.png │ │ ├── tendrilflail.png │ │ ├── tendrilflail_p.png │ │ ├── tendrillash.png │ │ ├── tendrillash_p.png │ │ ├── tendrilstrike.png │ │ ├── tendrilstrike_p.png │ │ ├── tonguelash.png │ │ ├── tonguelash_p.png │ │ ├── usefulslime.png │ │ ├── usefulslime_p.png │ │ ├── violentstop.png │ │ ├── violentstop_p.png │ │ ├── wastenot.png │ │ ├── wastenot_p.png │ │ ├── youaremine.png │ │ └── youaremine_p.png │ ├── char │ │ ├── corpse.png │ │ ├── orb │ │ │ ├── layer1.png │ │ │ ├── layer1d.png │ │ │ ├── layer2.png │ │ │ ├── layer2d.png │ │ │ ├── layer3.png │ │ │ ├── layer3d.png │ │ │ ├── layer4.png │ │ │ ├── layer4d.png │ │ │ ├── layer5.png │ │ │ ├── layer5d.png │ │ │ ├── layer6.png │ │ │ └── vfx.png │ │ ├── shoulder.png │ │ ├── shoulder2.png │ │ ├── skeleton.atlas │ │ ├── skeleton.json │ │ ├── skeleton.png │ │ └── skeletonPuddle.json │ ├── charSelect │ │ ├── button.png │ │ ├── emptyButton.png │ │ └── portrait.png │ ├── events │ │ ├── hunted.jpg │ │ ├── hunted.pdn │ │ └── slimeTome.jpg │ ├── orbs │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── Torchhead.png │ │ ├── aggressive.png │ │ ├── attackBuff.png │ │ ├── attackDebuff.png │ │ ├── attackDefend.png │ │ ├── bronzeslime.png │ │ ├── cultist.png │ │ ├── cultistleftstick.png │ │ ├── debuff1.png │ │ ├── debuff2.png │ │ ├── empty1.png │ │ ├── hex.png │ │ ├── licking.png │ │ ├── poisonous.png │ │ ├── sleep.png │ │ └── sliming.png │ ├── powers │ │ ├── AcidTongue.png │ │ ├── AcidTongueP.png │ │ ├── AcidTongueS.png │ │ ├── BuffAttackSlimes.png │ │ ├── BuffPoisonSlimes.png │ │ ├── BuffSlimingSlimes.png │ │ ├── BuffWeakenSlimes.png │ │ ├── Burning.png │ │ ├── BurningS.png │ │ ├── DelayedAttack.png │ │ ├── DelayedAttackSmall.png │ │ ├── DuplicatedEcho.png │ │ ├── DuplicatedEchoS.png │ │ ├── DuplicatedEnergy.png │ │ ├── DuplicatedEnergyS.png │ │ ├── EnergyNextTurnS.png │ │ ├── FirmFortitude.png │ │ ├── Gluttony.png │ │ ├── GluttonyS.png │ │ ├── GreedRespawn.png │ │ ├── Halved.png │ │ ├── HalvedS.png │ │ ├── HasteSmall.png │ │ ├── LivingWallS.png │ │ ├── Malleable.png │ │ ├── PoisonThorns.png │ │ ├── PoisonThornsS.png │ │ ├── PrepareCard.png │ │ ├── PrepareCardS.png │ │ ├── Recycling.png │ │ ├── RecyclingS.png │ │ ├── ScrapRespawn.png │ │ ├── Sleep.png │ │ ├── SleepSmall.png │ │ ├── SlimeSacrifice.png │ │ ├── SlimeSacrificeS.png │ │ ├── Slimed.png │ │ ├── SlimedS.png │ │ ├── SplitForLess.png │ │ ├── SplitForLessS.png │ │ ├── StudyAutomaton.png │ │ ├── StudyAutomatonS.png │ │ ├── StudyAwakened.png │ │ ├── StudyAwakenedS.png │ │ ├── StudyChamp.png │ │ ├── StudyChampS.png │ │ ├── StudyCollector.png │ │ ├── StudyCollectorS.png │ │ ├── StudyGuardian.png │ │ ├── StudyGuardianS.png │ │ ├── StudyHexaghost.png │ │ ├── StudyHexaghostS.png │ │ ├── StudyShapes.png │ │ ├── StudyShapesS.png │ │ ├── StudyTimeEater.png │ │ ├── StudyTimeEaterS.png │ │ ├── TackleDebuff.png │ │ ├── ThornsDown.png │ │ ├── ThornsDownS.png │ │ ├── darkRitual.png │ │ ├── excessslime.png │ │ ├── nostalgia.png │ │ ├── polybeampower.png │ │ ├── potency.png │ │ ├── recklessPower.png │ │ ├── retaingreen.png │ │ ├── ritual.png │ │ ├── tackleProtection.png │ │ └── toxicresidue.png │ ├── relics │ │ ├── dailysplitrelic.png │ │ ├── dailysplitrelicOutline.png │ │ ├── greedOoze.png │ │ ├── greedOozeOutline.png │ │ ├── heartofgoo.png │ │ ├── heartofgooOutline.png │ │ ├── heartofgooblack.png │ │ ├── minion.png │ │ ├── minionLarge.png │ │ ├── minionOutline.png │ │ ├── oozeStone.png │ │ ├── oozeStoneLarge.png │ │ ├── oozeStoneOutline.png │ │ ├── protectiveGear.png │ │ ├── protectiveGearOutline.png │ │ ├── scrapOoze.png │ │ ├── scrapOozeOutline.png │ │ ├── slimedSkull.png │ │ ├── slimedSkullLarge.png │ │ ├── slimedSkullOutline.png │ │ ├── slimedTail.png │ │ ├── slimedTailLarge.png │ │ ├── slimedTailOutline.png │ │ ├── slimedTailUsed.png │ │ ├── slimedteaSet.png │ │ ├── slimedteaSetLarge.png │ │ ├── slimedteaSetOutline.png │ │ ├── slimeplushie.png │ │ ├── slimeplushieLarge.png │ │ ├── slimeplushieOutline.png │ │ ├── tinybowlerhat.png │ │ ├── tinybowlerhatOutline.png │ │ └── tinybowlerhatinverted.png │ ├── scenes │ │ ├── Cityscene.atlas │ │ ├── Junglescene.atlas │ │ ├── Junglescene.png │ │ ├── scene.png │ │ ├── scene2.png │ │ ├── scene3.png │ │ ├── scene5.png │ │ ├── slimebound1.png │ │ ├── slimebound2.png │ │ └── slimebound3.png │ ├── ui │ │ ├── body7.png │ │ ├── scrapcampfire.pdn │ │ ├── scrapcampfire.png │ │ └── scrapcampfiredisabled.png │ └── vfx │ │ ├── coins.pdn │ │ ├── coins.png │ │ ├── cultistleftstick.png │ │ ├── cultistrightstick.png │ │ ├── scrap.pdn │ │ ├── scrap.png │ │ ├── slap.png │ │ ├── slimeball.png │ │ ├── slimeballWhite.png │ │ └── tongue.png │ ├── googly-eye-locations.json │ └── localization │ ├── eng │ ├── Slimebound-CardStrings.json │ ├── Slimebound-CharacterStrings.json │ ├── Slimebound-DailyModStrings.json │ ├── Slimebound-EventStrings.json │ ├── Slimebound-KeywordStrings.json │ ├── Slimebound-MonsterStrings.json │ ├── Slimebound-OrbStrings.json │ ├── Slimebound-PotionStrings.json │ ├── Slimebound-PowerStrings.json │ ├── Slimebound-RelicStrings.json │ └── Slimebound-UIStrings.json │ ├── fra │ ├── Slimebound-CardStrings.json │ ├── Slimebound-CharacterStrings.json │ ├── Slimebound-DailyModStrings.json │ ├── Slimebound-EventStrings.json │ ├── Slimebound-KeywordStrings.json │ ├── Slimebound-MonsterStrings.json │ ├── Slimebound-OrbStrings.json │ ├── Slimebound-PotionStrings.json │ ├── Slimebound-PowerStrings.json │ ├── Slimebound-RelicStrings.json │ └── Slimebound-UIStrings.json │ ├── jpn │ ├── Slimebound-CardStrings.json │ ├── Slimebound-CharacterStrings.json │ ├── Slimebound-DailyModStrings.json │ ├── Slimebound-EventStrings.json │ ├── Slimebound-KeywordStrings.json │ ├── Slimebound-MonsterStrings.json │ ├── Slimebound-OrbStrings.json │ ├── Slimebound-PotionStrings.json │ ├── Slimebound-PowerStrings.json │ ├── Slimebound-RelicStrings.json │ └── Slimebound-UIStrings.json │ ├── kor │ ├── Slimebound-CardStrings.json │ ├── Slimebound-CharacterStrings.json │ ├── Slimebound-DailyModStrings.json │ ├── Slimebound-EventStrings.json │ ├── Slimebound-KeywordStrings.json │ ├── Slimebound-MonsterStrings.json │ ├── Slimebound-OrbStrings.json │ ├── Slimebound-PotionStrings.json │ ├── Slimebound-PowerStrings.json │ ├── Slimebound-RelicStrings.json │ └── Slimebound-UIStrings.json │ ├── zhs │ ├── INTRODUCTION-ZHS.txt │ ├── Slimebound-CardStrings.json │ ├── Slimebound-CharacterStrings.json │ ├── Slimebound-DailyModStrings.json │ ├── Slimebound-EventStrings.json │ ├── Slimebound-KeywordStrings.json │ ├── Slimebound-MonsterStrings.json │ ├── Slimebound-OrbStrings.json │ ├── Slimebound-PotionStrings.json │ ├── Slimebound-PowerStrings.json │ ├── Slimebound-RelicStrings.json │ └── Slimebound-UIStrings.json │ └── zht │ ├── Slimebound-CardStrings.json │ ├── Slimebound-CharacterStrings.json │ ├── Slimebound-DailyModStrings.json │ ├── Slimebound-EventStrings.json │ ├── Slimebound-KeywordStrings.json │ ├── Slimebound-MonsterStrings.json │ ├── Slimebound-OrbStrings.json │ ├── Slimebound-PotionStrings.json │ ├── Slimebound-PowerStrings.json │ ├── Slimebound-RelicStrings.json │ └── Slimebound-UIStrings.json ├── ss1.png └── ss2.png /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | slimebound -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /STSSlimeMod.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Archiver-Version: Plexus Archiver 3 | Built-By: Bruce Bland 4 | Created-By: Apache Maven 3.3.9 5 | Build-Jdk: 1.8.0_191 6 | 7 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/META-INF/maven/slimeboundmod/slimeboundmod/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Sat Oct 27 16:38:52 EDT 2018 3 | version=v1.0.0 4 | groupId=gluttonmod 5 | artifactId=gluttonmod 6 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/actions/AddPreparedAction.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.actions; 2 | 3 | 4 | import com.megacrit.cardcrawl.actions.AbstractGameAction; 5 | import com.megacrit.cardcrawl.actions.common.MakeTempCardInHandAction; 6 | import com.megacrit.cardcrawl.cards.AbstractCard; 7 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 8 | import com.megacrit.cardcrawl.helpers.CardLibrary; 9 | import slimeboundclassic.cards.Prepare; 10 | 11 | 12 | public class AddPreparedAction extends AbstractGameAction { 13 | public boolean upgradeCard; 14 | 15 | public AddPreparedAction(boolean upgraded) { 16 | this.upgradeCard = upgraded; 17 | 18 | 19 | } 20 | 21 | 22 | public void update() { 23 | 24 | AbstractCard c; 25 | 26 | c = CardLibrary.getCard(Prepare.ID).makeCopy(); 27 | // c.modifyCostForTurn(-9); 28 | c.setCostForTurn(c.cost - 9); 29 | 30 | if (upgradeCard) { 31 | c.upgrade(); 32 | } 33 | AbstractDungeon.actionManager.addToBottom(new MakeTempCardInHandAction(c)); 34 | 35 | this.isDone = true; 36 | } 37 | 38 | } 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/actions/MassRepurposeAction.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.actions; 2 | 3 | 4 | import com.megacrit.cardcrawl.actions.AbstractGameAction; 5 | import com.megacrit.cardcrawl.actions.common.ExhaustSpecificCardAction; 6 | import com.megacrit.cardcrawl.cards.AbstractCard; 7 | import com.megacrit.cardcrawl.characters.AbstractPlayer; 8 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 9 | 10 | 11 | public class MassRepurposeAction extends AbstractGameAction { 12 | public AbstractPlayer p; 13 | 14 | public MassRepurposeAction(AbstractPlayer p) { 15 | this.p = p; 16 | 17 | 18 | } 19 | 20 | 21 | public void update() { 22 | 23 | int handSize = 0; 24 | 25 | for (AbstractCard c : p.hand.group) { 26 | handSize++; 27 | AbstractDungeon.actionManager.addToBottom(new ExhaustSpecificCardAction(c, p.hand, true)); 28 | } 29 | 30 | for (int i = 0; i < handSize; i++) { 31 | AbstractDungeon.actionManager.addToBottom(new MakeTempCardInHandActionReduceCost(AbstractDungeon.returnTrulyRandomCardInCombat())); 32 | 33 | } 34 | this.isDone = true; 35 | } 36 | 37 | } 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/actions/PreventCurrentOverMaxHealthAction.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.actions; 2 | 3 | import com.megacrit.cardcrawl.actions.AbstractGameAction; 4 | import com.megacrit.cardcrawl.characters.AbstractPlayer; 5 | import com.megacrit.cardcrawl.core.Settings; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | import org.apache.logging.log4j.LogManager; 8 | import org.apache.logging.log4j.Logger; 9 | import slimeboundclassic.SlimeboundMod; 10 | 11 | public class PreventCurrentOverMaxHealthAction extends AbstractGameAction { 12 | private AbstractPlayer p; 13 | 14 | public static final Logger logger = LogManager.getLogger(SlimeboundMod.class.getName()); 15 | 16 | 17 | public PreventCurrentOverMaxHealthAction() { 18 | 19 | this.p = AbstractDungeon.player; 20 | 21 | setValues(this.p, AbstractDungeon.player, this.amount); 22 | 23 | this.actionType = ActionType.CARD_MANIPULATION; 24 | 25 | this.duration = Settings.ACTION_DUR_FAST; 26 | 27 | } 28 | 29 | 30 | public void update() { 31 | if (p.currentHealth > p.maxHealth - this.amount){ 32 | 33 | p.currentHealth = p.maxHealth - this.amount; 34 | 35 | } 36 | 37 | this.isDone = true; 38 | 39 | 40 | } 41 | } 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/actions/RandomStudyCardAction.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.actions; 2 | 3 | 4 | import com.megacrit.cardcrawl.actions.AbstractGameAction; 5 | import com.megacrit.cardcrawl.actions.common.MakeTempCardInHandAction; 6 | import com.megacrit.cardcrawl.cards.AbstractCard; 7 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 8 | import com.megacrit.cardcrawl.helpers.CardLibrary; 9 | import slimeboundclassic.cards.StudyTheSpire; 10 | 11 | 12 | public class RandomStudyCardAction extends AbstractGameAction { 13 | public boolean upgradeCard; 14 | 15 | public RandomStudyCardAction(boolean upgraded) { 16 | this.upgradeCard = upgraded; 17 | 18 | 19 | } 20 | 21 | 22 | public void update() { 23 | 24 | AbstractCard c; 25 | //Random random = new Random(); 26 | //Integer chosenRand = random.nextInt(8); 27 | c = CardLibrary.getCard(StudyTheSpire.ID).makeCopy(); 28 | 29 | 30 | 31 | if (upgradeCard) { 32 | c.upgrade(); 33 | } 34 | c.modifyCostForCombat(-9); 35 | AbstractDungeon.actionManager.addToBottom(new MakeTempCardInHandAction(c)); 36 | 37 | this.isDone = true; 38 | } 39 | 40 | } 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/actions/SlimeAutoCultistBuff.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.actions; 2 | 3 | 4 | import com.megacrit.cardcrawl.actions.AbstractGameAction; 5 | import com.megacrit.cardcrawl.core.AbstractCreature; 6 | import com.megacrit.cardcrawl.powers.AbstractPower; 7 | import slimeboundclassic.orbs.SpawnedSlime; 8 | 9 | 10 | public class SlimeAutoCultistBuff extends AbstractGameAction { 11 | 12 | private static final float DURATION = 0.01F; 13 | private AbstractCreature owner; 14 | private static final float POST_ATTACK_WAIT_DUR = 0.2F; 15 | private int damage; 16 | private int debuffamount; 17 | private AbstractPower p; 18 | private AttackEffect AE; 19 | private SpawnedSlime slime; 20 | 21 | public SlimeAutoCultistBuff(Integer damage, SpawnedSlime o) { 22 | 23 | 24 | this.actionType = ActionType.POWER; 25 | this.duration = 0.01F; 26 | this.debuffamount=amount; 27 | this.slime=o; 28 | this.AE=AE; 29 | this.damage=damage; 30 | 31 | } 32 | 33 | public void update() { 34 | 35 | 36 | slime.applyUniqueFocus(this.damage); 37 | 38 | this.isDone = true; 39 | } 40 | } 41 | 42 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/actions/SlimeBuffUpgraded.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.actions; 2 | 3 | 4 | import com.megacrit.cardcrawl.actions.AbstractGameAction; 5 | import com.megacrit.cardcrawl.core.AbstractCreature; 6 | import slimeboundclassic.orbs.SpawnedSlime; 7 | 8 | 9 | public class SlimeBuffUpgraded extends AbstractGameAction { 10 | 11 | private static final float DURATION = 0.01F; 12 | private AbstractCreature owner; 13 | private static final float POST_ATTACK_WAIT_DUR = 0.2F; 14 | private int amount; 15 | private SpawnedSlime slime; 16 | 17 | public SlimeBuffUpgraded(Integer amount, SpawnedSlime o) { 18 | 19 | this.amount=amount; 20 | this.slime=o; 21 | 22 | } 23 | 24 | public void update() { 25 | 26 | 27 | slime.applyUniqueFocus(amount); 28 | 29 | this.isDone = true; 30 | } 31 | } 32 | 33 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/actions/TriggerSlimeAttacksAction.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.actions; 2 | 3 | 4 | import com.megacrit.cardcrawl.actions.AbstractGameAction; 5 | import com.megacrit.cardcrawl.characters.AbstractPlayer; 6 | import com.megacrit.cardcrawl.orbs.AbstractOrb; 7 | import slimeboundclassic.orbs.SpawnedSlime; 8 | 9 | 10 | public class TriggerSlimeAttacksAction extends AbstractGameAction { 11 | public boolean upgradeCard; 12 | public AbstractPlayer p; 13 | 14 | public TriggerSlimeAttacksAction(AbstractPlayer p) { 15 | this.p = p; 16 | 17 | 18 | } 19 | 20 | 21 | public void update() { 22 | 23 | 24 | for (AbstractOrb o : p.orbs) { 25 | 26 | if (o instanceof SpawnedSlime) { 27 | o.onStartOfTurn(); 28 | 29 | } 30 | } 31 | 32 | 33 | this.isDone = true; 34 | } 35 | 36 | } 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/actions/TriggerStartOfTurnEffectsAction.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.actions; 2 | 3 | 4 | import com.megacrit.cardcrawl.actions.AbstractGameAction; 5 | import com.megacrit.cardcrawl.characters.AbstractPlayer; 6 | 7 | 8 | public class TriggerStartOfTurnEffectsAction extends AbstractGameAction { 9 | 10 | private AbstractPlayer p; 11 | public TriggerStartOfTurnEffectsAction(AbstractPlayer p) { 12 | this.p=p; 13 | 14 | 15 | } 16 | 17 | public void update() { 18 | 19 | p.applyStartOfTurnPowers(); 20 | p.applyStartOfTurnCards(); 21 | p.applyStartOfTurnPostDrawRelics(); 22 | p.applyStartOfTurnRelics(); 23 | p.applyStartOfTurnPostDrawPowers(); 24 | p.applyStartOfTurnOrbs(); 25 | this.isDone = true; 26 | } 27 | } 28 | 29 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/actions/TrigggerSpecificSlimeAttackAction.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.actions; 2 | 3 | 4 | import com.megacrit.cardcrawl.actions.AbstractGameAction; 5 | import com.megacrit.cardcrawl.orbs.AbstractOrb; 6 | 7 | 8 | public class TrigggerSpecificSlimeAttackAction extends AbstractGameAction { 9 | public boolean upgradeCard; 10 | public AbstractOrb o; 11 | 12 | public TrigggerSpecificSlimeAttackAction(AbstractOrb o) { 13 | this.o = o; 14 | 15 | 16 | } 17 | 18 | 19 | public void update() { 20 | 21 | 22 | o.onStartOfTurn(); 23 | 24 | 25 | this.isDone = true; 26 | } 27 | 28 | } 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/dailymods/AllSplit.java: -------------------------------------------------------------------------------- 1 | 2 | 3 | package slimeboundclassic.dailymods; 4 | 5 | import com.megacrit.cardcrawl.core.CardCrawlGame; 6 | import com.megacrit.cardcrawl.daily.mods.AbstractDailyMod; 7 | import com.megacrit.cardcrawl.helpers.ImageMaster; 8 | import com.megacrit.cardcrawl.localization.RunModStrings; 9 | 10 | 11 | public class AllSplit extends AbstractDailyMod { 12 | public static final String ID = "SlimeboundClassic:AllSplit"; 13 | private static final RunModStrings modStrings; 14 | public static final String NAME; 15 | public static final String DESC; 16 | 17 | public AllSplit() { 18 | super("SlimeboundClassic:AllSplit", NAME, DESC, null, false); 19 | this.img = ImageMaster.loadImage("SlimeboundClassicImages/relics/heartofgoo.png"); 20 | } 21 | 22 | static { 23 | modStrings = CardCrawlGame.languagePack.getRunModString("SlimeboundClassic:AllSplit"); 24 | NAME = modStrings.NAME; 25 | DESC = modStrings.DESCRIPTION; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/helpers/SlimeboundTags.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.helpers; 2 | 3 | public class SlimeboundTags { 4 | { 5 | 6 | } 7 | } 8 | 9 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/AbstractCardEnum.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpireEnum; 4 | import com.megacrit.cardcrawl.cards.AbstractCard.CardColor; 5 | 6 | public class AbstractCardEnum { 7 | @SpireEnum 8 | public static CardColor SLIMEBOUND; 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/CampfirePatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | import com.megacrit.cardcrawl.dungeons.*; 3 | import com.megacrit.cardcrawl.rooms.CampfireUI; 4 | import com.megacrit.cardcrawl.ui.campfire.AbstractCampfireOption; 5 | 6 | import com.evacipated.cardcrawl.modthespire.lib.*; 7 | 8 | import java.util.*; 9 | 10 | import basemod.*; 11 | 12 | import slimeboundclassic.relics.ScrapOozeRelic; 13 | import slimeboundclassic.ui.ScrapBonfireOption; 14 | 15 | @SpirePatch(clz = CampfireUI.class, method = "initializeButtons") 16 | public class CampfirePatch { 17 | public static void Prefix(CampfireUI obj) { 18 | 19 | final ArrayList campfireButtons = (ArrayList)ReflectionHacks.getPrivate((Object)obj, (Class)CampfireUI.class, "buttons"); 20 | 21 | if (AbstractDungeon.player.hasRelic(ScrapOozeRelic.ID)) { 22 | campfireButtons.add(new ScrapBonfireOption(!AbstractDungeon.player.masterDeck.getPurgeableCards().isEmpty())); 23 | 24 | /* 25 | if (AbstractDungeon.player.hasRelic(PeacePipe.ID)){ 26 | AbstractDungeon.player.relics.remove(AbstractDungeon.player.getRelic(PeacePipe.ID)); 27 | } 28 | */ 29 | 30 | } 31 | } 32 | } 33 | 34 | 35 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/CityBGPatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import basemod.ReflectionHacks; 4 | import com.badlogic.gdx.Gdx; 5 | import com.badlogic.gdx.graphics.g2d.TextureAtlas; 6 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 7 | import com.evacipated.cardcrawl.modthespire.lib.SpirePostfixPatch; 8 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 9 | import com.megacrit.cardcrawl.scenes.TheCityScene; 10 | import slimeboundclassic.characters.SlimeboundCharacter; 11 | 12 | @SpirePatch(clz= TheCityScene.class,method=SpirePatch.CONSTRUCTOR) 13 | public class CityBGPatch { 14 | 15 | @SpirePostfixPatch 16 | public static void Postfix(TheCityScene TheCityScene_instance) { 17 | if (AbstractDungeon.player instanceof SlimeboundCharacter) { 18 | TextureAtlas atlas = new TextureAtlas(Gdx.files.internal("SlimeboundClassicImages/scenes/Cityscene.atlas")); 19 | 20 | ReflectionHacks.setPrivate(TheCityScene_instance, TheCityScene.class, "mg", atlas.findRegion("mod/mg1")); 21 | ReflectionHacks.setPrivate(TheCityScene_instance, TheCityScene.class, "mgGlow", atlas.findRegion("mod/mg1Glow")); 22 | ReflectionHacks.setPrivate(TheCityScene_instance, TheCityScene.class, "mg2", atlas.findRegion("mod/mg2")); 23 | 24 | ReflectionHacks.setPrivate(TheCityScene_instance, TheCityScene.class, "fg", atlas.findRegion("mod/fg")); 25 | 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/EmptyOrbSlotGraphicsPatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.badlogic.gdx.graphics.Texture; 4 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 5 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 6 | import com.megacrit.cardcrawl.helpers.ImageMaster; 7 | import com.megacrit.cardcrawl.orbs.EmptyOrbSlot; 8 | import slimeboundclassic.characters.SlimeboundCharacter; 9 | 10 | @SpirePatch(clz= EmptyOrbSlot.class,method="updateDescription" 11 | ) 12 | public class EmptyOrbSlotGraphicsPatch { 13 | public static Texture NORMAL_ORB = ImageMaster.ORB_SLOT_1; 14 | public static Texture SLIME_ORB = ImageMaster.loadImage("SlimeboundClassicImages/orbs/empty1.png"); 15 | public static void Postfix(EmptyOrbSlot EmptyOrbSlot_instance) { 16 | if (AbstractDungeon.player instanceof SlimeboundCharacter) { 17 | ImageMaster.ORB_SLOT_1 = SLIME_ORB; 18 | } else { 19 | ImageMaster.ORB_SLOT_1 = NORMAL_ORB; 20 | } 21 | } 22 | } 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/EnergyPanelMovePatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.evacipated.cardcrawl.modthespire.lib.SpirePostfixPatch; 5 | import com.megacrit.cardcrawl.core.Settings; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | import com.megacrit.cardcrawl.ui.panels.EnergyPanel; 8 | import slimeboundclassic.characters.SlimeboundCharacter; 9 | 10 | @SpirePatch(clz= EnergyPanel.class,method= SpirePatch.CONSTRUCTOR) 11 | public class EnergyPanelMovePatch { 12 | 13 | @SpirePostfixPatch 14 | public static void Postfix(EnergyPanel obj) { 15 | // SlimeboundMod.logger.info("Energy panel move patch hit."); 16 | if (AbstractDungeon.player != null){ 17 | 18 | if (AbstractDungeon.player instanceof SlimeboundCharacter){ 19 | obj.show_y = 130.0F * Settings.scale; 20 | // SlimeboundMod.logger.info("Energy panel move patch success"); 21 | } 22 | } else { 23 | // SlimeboundMod.logger.info("Energy panel move patch: no character"); 24 | } 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/EvokeOrbPatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.mod.stslib.actions.defect.EvokeSpecificOrbAction; 4 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 5 | import com.evacipated.cardcrawl.modthespire.lib.SpireReturn; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | 8 | @SpirePatch(clz= EvokeSpecificOrbAction.class,method="update") 9 | public class EvokeOrbPatch { 10 | 11 | public static SpireReturn Prefix(EvokeSpecificOrbAction obj) { 12 | if (AbstractDungeon.getMonsters().areMonstersBasicallyDead()) { 13 | return SpireReturn.Return(null); 14 | } else { 15 | 16 | return SpireReturn.Continue(); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/GoopGlowEffectPatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import basemod.ReflectionHacks; 4 | import com.badlogic.gdx.graphics.Color; 5 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 6 | import com.evacipated.cardcrawl.modthespire.lib.SpirePostfixPatch; 7 | import com.megacrit.cardcrawl.cards.AbstractCard; 8 | import com.megacrit.cardcrawl.vfx.AbstractGameEffect; 9 | import com.megacrit.cardcrawl.vfx.cardManip.CardGlowBorder; 10 | import slimeboundclassic.SlimeboundMod; 11 | 12 | @SpirePatch(clz= CardGlowBorder.class,method = SpirePatch.CONSTRUCTOR, 13 | paramtypez = { 14 | AbstractCard.class}) 15 | public class GoopGlowEffectPatch { 16 | 17 | @SpirePostfixPatch 18 | public static void Postfix(CardGlowBorder obj, AbstractCard card) { 19 | 20 | if (SlimeboundMod.goopGlow && card.hasTag(SlimeboundMod.GOOPEXPLOIT)) 21 | ReflectionHacks.setPrivate(obj, AbstractGameEffect.class, "color", new Color(Color.PURPLE)); 22 | 23 | } 24 | } 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/IntangiblePuddlePatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.evacipated.cardcrawl.modthespire.lib.SpirePostfixPatch; 5 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 6 | import com.megacrit.cardcrawl.powers.IntangiblePlayerPower; 7 | import slimeboundclassic.characters.SlimeboundCharacter; 8 | 9 | @SpirePatch(clz= IntangiblePlayerPower.class,method="atEndOfRound") 10 | public class IntangiblePuddlePatch { 11 | 12 | @SpirePostfixPatch 13 | public static void Postfix(IntangiblePlayerPower obj) { 14 | //SlimeboundMod.logger.info("Intangible patch hit." + obj.amount); 15 | 16 | if (obj.amount == 1) { 17 | //SlimeboundMod.logger.info("Intangible patch hit. intangible is 0"); 18 | 19 | 20 | if (AbstractDungeon.player instanceof SlimeboundCharacter) { 21 | //SlimeboundMod.logger.info("Intangible patch hit. removing puddle"); 22 | ((SlimeboundCharacter) AbstractDungeon.player).removePuddleForm(); 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/JungleBGPatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import basemod.ReflectionHacks; 4 | import com.badlogic.gdx.Gdx; 5 | import com.badlogic.gdx.graphics.g2d.TextureAtlas; 6 | import com.evacipated.cardcrawl.modthespire.Loader; 7 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 8 | import com.evacipated.cardcrawl.modthespire.lib.SpirePostfixPatch; 9 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 10 | import slimeboundclassic.SlimeboundMod; 11 | import slimeboundclassic.characters.SlimeboundCharacter; 12 | import theAct.scenes.TheJungleScene; 13 | @SpirePatch(cls= "theAct.scenes.TheJungleScene", method=SpirePatch.CONSTRUCTOR, optional=true) 14 | public class JungleBGPatch { 15 | 16 | @SpirePostfixPatch 17 | public static void Postfix(TheJungleScene TheJungleScene_instance) { 18 | SlimeboundMod.logger.info("Jungle BG patch hit"); 19 | if (Loader.isModLoaded("TheJungle")) { 20 | SlimeboundMod.logger.info("Jungle is loaded"); 21 | if (AbstractDungeon.player instanceof SlimeboundCharacter) { 22 | SlimeboundMod.logger.info("Jungle BG patch success"); 23 | TextureAtlas atlas = new TextureAtlas(Gdx.files.internal("SlimeboundClassicImages/scenes/Junglescene.atlas")); 24 | 25 | ReflectionHacks.setPrivate(TheJungleScene_instance, TheJungleScene.class, "fg", atlas.findRegion("mod/fg")); 26 | 27 | 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/LibraryTypeEnum.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpireEnum; 4 | import com.megacrit.cardcrawl.helpers.CardLibrary.LibraryType; 5 | 6 | public class LibraryTypeEnum { 7 | @SpireEnum 8 | public static LibraryType SLIMEBOUND; 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/MakeUsefulSlimeInHandPatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import basemod.ReflectionHacks; 4 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 5 | import com.evacipated.cardcrawl.modthespire.lib.SpirePostfixPatch; 6 | import com.megacrit.cardcrawl.actions.common.MakeTempCardInHandAction; 7 | import com.megacrit.cardcrawl.cards.AbstractCard; 8 | import com.megacrit.cardcrawl.cards.status.Slimed; 9 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 10 | import slimeboundclassic.cards.UsefulSlime; 11 | import slimeboundclassic.characters.SlimeboundCharacter; 12 | 13 | @SpirePatch(clz= MakeTempCardInHandAction.class,method = SpirePatch.CONSTRUCTOR, 14 | paramtypez = { 15 | AbstractCard.class, 16 | int.class}) 17 | public class MakeUsefulSlimeInHandPatch { 18 | 19 | @SpirePostfixPatch 20 | public static void Postfix(MakeTempCardInHandAction obj, AbstractCard card, int amount) { 21 | 22 | if (AbstractDungeon.player instanceof SlimeboundCharacter && card instanceof Slimed) { 23 | ReflectionHacks.setPrivate(obj, MakeTempCardInHandAction.class, "c", new UsefulSlime()); 24 | 25 | } 26 | } 27 | } 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/OrbPositionPatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.evacipated.cardcrawl.modthespire.lib.SpireReturn; 5 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 6 | import com.megacrit.cardcrawl.orbs.AbstractOrb; 7 | import slimeboundclassic.characters.SlimeboundCharacter; 8 | 9 | @SpirePatch(clz= AbstractOrb.class,method="setSlot", 10 | paramtypez = { 11 | int.class, 12 | int.class}) 13 | public class OrbPositionPatch { 14 | 15 | 16 | public static SpireReturn Prefix(AbstractOrb abstractOrb_instance, int slotNum, int maxOrbs) { 17 | 18 | if (AbstractDungeon.player instanceof SlimeboundCharacter) { 19 | abstractOrb_instance.tX = ((SlimeboundCharacter) AbstractDungeon.player).orbPositionsX[slotNum]; 20 | abstractOrb_instance.tY = ((SlimeboundCharacter) AbstractDungeon.player).orbPositionsY[slotNum]; 21 | 22 | abstractOrb_instance.hb.move(abstractOrb_instance.tX, abstractOrb_instance.tY); 23 | return SpireReturn.Return(null); 24 | } else { 25 | 26 | return SpireReturn.Continue(); 27 | 28 | } 29 | 30 | } 31 | 32 | } 33 | 34 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/SadisticNaturePatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.evacipated.cardcrawl.modthespire.lib.SpirePostfixPatch; 5 | import com.megacrit.cardcrawl.cards.colorless.SadisticNature; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | import org.apache.logging.log4j.LogManager; 8 | import org.apache.logging.log4j.Logger; 9 | import slimeboundclassic.SlimeboundMod; 10 | import slimeboundclassic.characters.SlimeboundCharacter; 11 | 12 | @SpirePatch(clz = SadisticNature.class, 13 | method = SpirePatch.CONSTRUCTOR) 14 | 15 | public class SadisticNaturePatch { 16 | public static final Logger logger = LogManager.getLogger(SlimeboundMod.class.getName()); 17 | 18 | 19 | 20 | @SpirePostfixPatch 21 | public static void Patch(SadisticNature SadisticNature_instance) { 22 | 23 | 24 | 25 | 26 | // logger.info("Sadistic Nature Patch hit"); 27 | if (AbstractDungeon.isPlayerInDungeon()) { 28 | // logger.info("Sadistic Nature Patch player is in dungeon"); 29 | if ((AbstractDungeon.player instanceof SlimeboundCharacter)) { 30 | 31 | // logger.info("Sadistic Nature reducing cost"); 32 | 33 | SadisticNature_instance.cost = 2; 34 | SadisticNature_instance.costForTurn = 2; 35 | 36 | } 37 | } 38 | 39 | } 40 | } 41 | 42 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/ScrapOozePatchPre.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.megacrit.cardcrawl.core.CardCrawlGame; 5 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 6 | import com.megacrit.cardcrawl.events.exordium.ScrapOoze; 7 | import com.megacrit.cardcrawl.localization.EventStrings; 8 | import org.apache.logging.log4j.LogManager; 9 | import org.apache.logging.log4j.Logger; 10 | import slimeboundclassic.SlimeboundMod; 11 | import slimeboundclassic.characters.SlimeboundCharacter; 12 | 13 | @SpirePatch(clz = ScrapOoze.class, 14 | method = "onEnterRoom") 15 | 16 | public class ScrapOozePatchPre { 17 | public static final Logger logger = LogManager.getLogger(SlimeboundMod.class.getName()); 18 | 19 | private static final EventStrings eventStrings; 20 | public static final String[] DESCRIPTIONS; 21 | public static final String[] OPTIONS; 22 | 23 | public static void Postfix(ScrapOoze meObj) { 24 | // logger.info("Patch hit"); 25 | if (!(AbstractDungeon.player instanceof SlimeboundCharacter)) return; 26 | 27 | meObj.imageEventText.setDialogOption(OPTIONS[0]); 28 | } 29 | 30 | static { 31 | eventStrings = CardCrawlGame.languagePack.getEventString("SlimeboundClassic:ScrapOozePatch"); 32 | DESCRIPTIONS = eventStrings.DESCRIPTIONS; 33 | OPTIONS = eventStrings.OPTIONS; 34 | } 35 | } 36 | 37 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/SlimeBossCheck.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 5 | import com.megacrit.cardcrawl.monsters.exordium.SlimeBoss; 6 | import slimeboundclassic.characters.SlimeboundCharacter; 7 | 8 | @SpirePatch(clz=SlimeBoss.class,method="usePreBattleAction") 9 | public class SlimeBossCheck { 10 | 11 | public static void Prefix(SlimeBoss sb) { 12 | if (AbstractDungeon.player instanceof SlimeboundCharacter) { 13 | ((SlimeboundCharacter) AbstractDungeon.player).foughtSlimeBoss=true; 14 | // SlimeboundMod.logger.info("Slimebound Character has fought the Slime Boss."); 15 | 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/SlimeTalkAcidL.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.megacrit.cardcrawl.actions.animations.TalkAction; 5 | import com.megacrit.cardcrawl.core.CardCrawlGame; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | import com.megacrit.cardcrawl.localization.EventStrings; 8 | import com.megacrit.cardcrawl.monsters.exordium.AcidSlime_L; 9 | import slimeboundclassic.SlimeboundMod; 10 | import slimeboundclassic.characters.SlimeboundCharacter; 11 | 12 | @SpirePatch(clz= AcidSlime_L.class,method="takeTurn") 13 | public class SlimeTalkAcidL { 14 | private static final EventStrings eventStrings; 15 | public static final String[] DESCRIPTIONS; 16 | 17 | public static void Prefix(AcidSlime_L sb) { 18 | if (AbstractDungeon.player instanceof SlimeboundCharacter && SlimeboundMod.slimeTalkedAcidL == false) { 19 | AbstractDungeon.actionManager.addToBottom(new TalkAction(sb, DESCRIPTIONS[1], 1.0F, 2.0F)); 20 | SlimeboundMod.slimeTalkedAcidL = true; 21 | } 22 | } 23 | 24 | static { 25 | eventStrings = CardCrawlGame.languagePack.getEventString("SlimeboundClassic:SlimeTalk"); 26 | DESCRIPTIONS = eventStrings.DESCRIPTIONS; 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/SlimeTalkAcidM.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.megacrit.cardcrawl.actions.animations.TalkAction; 5 | import com.megacrit.cardcrawl.core.CardCrawlGame; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | import com.megacrit.cardcrawl.localization.EventStrings; 8 | import com.megacrit.cardcrawl.monsters.exordium.AcidSlime_M; 9 | import slimeboundclassic.SlimeboundMod; 10 | import slimeboundclassic.characters.SlimeboundCharacter; 11 | 12 | @SpirePatch(clz= AcidSlime_M.class,method="takeTurn") 13 | public class SlimeTalkAcidM { 14 | private static final EventStrings eventStrings; 15 | public static final String[] DESCRIPTIONS; 16 | 17 | public static void Prefix(AcidSlime_M sb) { 18 | if (AbstractDungeon.player instanceof SlimeboundCharacter && SlimeboundMod.slimeTalkedAcidM == false) { 19 | AbstractDungeon.actionManager.addToBottom(new TalkAction(sb, DESCRIPTIONS[2], 1.0F, 2.0F)); 20 | SlimeboundMod.slimeTalkedAcidM = true; 21 | } 22 | } 23 | 24 | static { 25 | eventStrings = CardCrawlGame.languagePack.getEventString("SlimeboundClassic:SlimeTalk"); 26 | DESCRIPTIONS = eventStrings.DESCRIPTIONS; 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/SlimeTalkAcidS.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.megacrit.cardcrawl.actions.animations.TalkAction; 5 | import com.megacrit.cardcrawl.core.CardCrawlGame; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | import com.megacrit.cardcrawl.localization.EventStrings; 8 | import com.megacrit.cardcrawl.monsters.exordium.AcidSlime_S; 9 | import slimeboundclassic.SlimeboundMod; 10 | import slimeboundclassic.characters.SlimeboundCharacter; 11 | 12 | @SpirePatch(clz=AcidSlime_S.class,method="takeTurn") 13 | public class SlimeTalkAcidS { 14 | private static final EventStrings eventStrings; 15 | public static final String[] DESCRIPTIONS; 16 | 17 | public static void Prefix(AcidSlime_S sb) { 18 | if (AbstractDungeon.player instanceof SlimeboundCharacter && SlimeboundMod.slimeTalkedAcidS == false) { 19 | AbstractDungeon.actionManager.addToBottom(new TalkAction(sb, DESCRIPTIONS[3], 1.0F, 2.0F)); 20 | SlimeboundMod.slimeTalkedAcidS = true; 21 | } 22 | } 23 | 24 | static { 25 | eventStrings = CardCrawlGame.languagePack.getEventString("SlimeboundClassic:SlimeTalk"); 26 | DESCRIPTIONS = eventStrings.DESCRIPTIONS; 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/SlimeTalkCollector.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.megacrit.cardcrawl.actions.animations.TalkAction; 5 | import com.megacrit.cardcrawl.core.CardCrawlGame; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | import com.megacrit.cardcrawl.localization.EventStrings; 8 | import com.megacrit.cardcrawl.monsters.city.TheCollector; 9 | import slimeboundclassic.SlimeboundMod; 10 | import slimeboundclassic.characters.SlimeboundCharacter; 11 | import slimeboundclassic.relics.StudyCardRelic; 12 | 13 | @SpirePatch(clz=TheCollector.class,method="takeTurn") 14 | public class SlimeTalkCollector { 15 | private static final EventStrings eventStrings; 16 | public static final String[] DESCRIPTIONS; 17 | 18 | public static void Prefix(TheCollector sb) { 19 | if (AbstractDungeon.player instanceof SlimeboundCharacter && SlimeboundMod.slimeTalkedCollector == false && AbstractDungeon.player.hasRelic(StudyCardRelic.ID)) { 20 | AbstractDungeon.actionManager.addToBottom(new TalkAction(sb, DESCRIPTIONS[4], 1.0F, 2.0F)); 21 | SlimeboundMod.slimeTalkedCollector = true; 22 | } 23 | } 24 | 25 | static { 26 | eventStrings = CardCrawlGame.languagePack.getEventString("SlimeboundClassic:SlimeTalk"); 27 | DESCRIPTIONS = eventStrings.DESCRIPTIONS; 28 | } 29 | } -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/SlimeTalkSpikeL.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.megacrit.cardcrawl.actions.animations.TalkAction; 5 | import com.megacrit.cardcrawl.core.CardCrawlGame; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | import com.megacrit.cardcrawl.localization.EventStrings; 8 | import com.megacrit.cardcrawl.monsters.exordium.SpikeSlime_L; 9 | import slimeboundclassic.SlimeboundMod; 10 | import slimeboundclassic.characters.SlimeboundCharacter; 11 | 12 | @SpirePatch(clz= SpikeSlime_L.class,method="takeTurn") 13 | public class SlimeTalkSpikeL { 14 | private static final EventStrings eventStrings; 15 | public static final String[] DESCRIPTIONS; 16 | 17 | public static void Prefix(SpikeSlime_L sb) { 18 | if (AbstractDungeon.player instanceof SlimeboundCharacter && SlimeboundMod.slimeTalkedSpikeL == false) { 19 | AbstractDungeon.actionManager.addToBottom(new TalkAction(sb, DESCRIPTIONS[8], 1.0F, 2.0F)); 20 | SlimeboundMod.slimeTalkedSpikeL = true; 21 | } 22 | } 23 | 24 | static { 25 | eventStrings = CardCrawlGame.languagePack.getEventString("SlimeboundClassic:SlimeTalk"); 26 | DESCRIPTIONS = eventStrings.DESCRIPTIONS; 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/SlimeTalkSpikeM.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.megacrit.cardcrawl.actions.animations.TalkAction; 5 | import com.megacrit.cardcrawl.core.CardCrawlGame; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | import com.megacrit.cardcrawl.localization.EventStrings; 8 | import com.megacrit.cardcrawl.monsters.exordium.SpikeSlime_M; 9 | import slimeboundclassic.SlimeboundMod; 10 | import slimeboundclassic.characters.SlimeboundCharacter; 11 | 12 | @SpirePatch(clz= SpikeSlime_M.class,method="takeTurn") 13 | public class SlimeTalkSpikeM { 14 | private static final EventStrings eventStrings; 15 | public static final String[] DESCRIPTIONS; 16 | 17 | public static void Prefix(SpikeSlime_M sb) { 18 | if (AbstractDungeon.player instanceof SlimeboundCharacter && SlimeboundMod.slimeTalkedSpikeM == false) { 19 | AbstractDungeon.actionManager.addToBottom(new TalkAction(sb, DESCRIPTIONS[9], 1.0F, 2.0F)); 20 | SlimeboundMod.slimeTalkedSpikeM = true; 21 | } 22 | } 23 | 24 | static { 25 | eventStrings = CardCrawlGame.languagePack.getEventString("SlimeboundClassic:SlimeTalk"); 26 | DESCRIPTIONS = eventStrings.DESCRIPTIONS; 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/SlimeTalkSpikeS.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.megacrit.cardcrawl.actions.animations.TalkAction; 5 | import com.megacrit.cardcrawl.core.CardCrawlGame; 6 | import com.megacrit.cardcrawl.dungeons.AbstractDungeon; 7 | import com.megacrit.cardcrawl.localization.EventStrings; 8 | import com.megacrit.cardcrawl.monsters.exordium.SpikeSlime_S; 9 | import slimeboundclassic.SlimeboundMod; 10 | import slimeboundclassic.characters.SlimeboundCharacter; 11 | 12 | @SpirePatch(clz=SpikeSlime_S.class,method="takeTurn") 13 | public class SlimeTalkSpikeS { 14 | private static final EventStrings eventStrings; 15 | public static final String[] DESCRIPTIONS; 16 | 17 | public static void Prefix(SpikeSlime_S sb) { 18 | if (AbstractDungeon.player instanceof SlimeboundCharacter && SlimeboundMod.slimeTalkedSpikeS == false) { 19 | AbstractDungeon.actionManager.addToBottom(new TalkAction(sb, DESCRIPTIONS[10], 1.0F, 2.0F)); 20 | SlimeboundMod.slimeTalkedSpikeS = true; 21 | } 22 | } 23 | 24 | static { 25 | eventStrings = CardCrawlGame.languagePack.getEventString("SlimeboundClassic:SlimeTalk"); 26 | DESCRIPTIONS = eventStrings.DESCRIPTIONS; 27 | } 28 | } -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/SlimeboundEnum.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpireEnum; 4 | import com.megacrit.cardcrawl.characters.AbstractPlayer.PlayerClass; 5 | 6 | public class SlimeboundEnum { 7 | @SpireEnum 8 | public static PlayerClass SLIMEBOUND; 9 | } 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/TokeOptionPatch.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.patches; 2 | 3 | import com.evacipated.cardcrawl.modthespire.lib.SpirePatch; 4 | import com.megacrit.cardcrawl.ui.campfire.TokeOption; 5 | import slimeboundclassic.SlimeboundMod; 6 | 7 | @SpirePatch(clz= TokeOption.class,method="useOption") 8 | public class TokeOptionPatch { 9 | 10 | 11 | public static void Prefix() { 12 | 13 | 14 | SlimeboundMod.scrapping = false; 15 | 16 | } 17 | } 18 | 19 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/UnlockDebugPatch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/java/slimeboundclassic/patches/UnlockDebugPatch.java -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/patches/VictoryPatch.java: -------------------------------------------------------------------------------- 1 | 2 | package slimeboundclassic.patches; 3 | 4 | /* 5 | public class VictoryPatch { 6 | @SpirePatch(clz = Cutscene.class, method = SpirePatch.CONSTRUCTOR) 7 | public static class addHeartPanels { 8 | public static void Postfix(Cutscene self, PlayerClass chosenClass) { 9 | if (chosenClass == SlimeboundEnum.SLIMEBOUND) { 10 | ArrayList panels = (ArrayList) ReflectionHacks.getPrivate(self, Cutscene.class, "panels"); 11 | panels.clear(); 12 | 13 | ReflectionHacks.setPrivate(self, Cutscene.class, "bgImg", ImageMaster.loadImage("images/scenes/greenBg.jpg")); 14 | 15 | panels.add(new CutscenePanel("SlimeboundClassicImages/scenes/slimebound1.png", "VO_SLIMEBOSS_1A")); 16 | panels.add(new CutscenePanel("SlimeboundClassicImages/scenes/slimebound2.png")); 17 | panels.add(new CutscenePanel("SlimeboundClassicImages/scenes/slimebound3.png")); 18 | 19 | 20 | } 21 | } 22 | } 23 | } 24 | */ 25 | 26 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/relics/SelfDamagePreventRelic.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.relics; 2 | 3 | import basemod.abstracts.CustomRelic; 4 | import com.badlogic.gdx.graphics.Texture; 5 | import com.megacrit.cardcrawl.relics.AbstractRelic; 6 | import slimeboundclassic.SlimeboundMod; 7 | 8 | public class SelfDamagePreventRelic extends CustomRelic { 9 | public static final String ID = "SlimeboundClassic:SelfDamagePreventRelic"; 10 | public static final String IMG_PATH = "relics/protectiveGear.png"; 11 | public static final String OUTLINE_IMG_PATH = "relics/protectiveGearOutline.png"; 12 | 13 | public SelfDamagePreventRelic() { 14 | super(ID, new Texture(SlimeboundMod.getResourcePath(IMG_PATH)), new Texture(SlimeboundMod.getResourcePath(OUTLINE_IMG_PATH)), 15 | RelicTier.SHOP, LandingSound.MAGICAL); 16 | } 17 | 18 | @Override 19 | public String getUpdatedDescription() { 20 | return this.DESCRIPTIONS[0]; 21 | } 22 | 23 | 24 | @Override 25 | public AbstractRelic makeCopy() { 26 | return new SelfDamagePreventRelic(); 27 | } 28 | 29 | } -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/vfx/SlimeIntentEffect.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.vfx; 2 | 3 | import com.badlogic.gdx.Gdx; 4 | import com.badlogic.gdx.graphics.Texture; 5 | import com.badlogic.gdx.graphics.g2d.SpriteBatch; 6 | import com.megacrit.cardcrawl.orbs.AbstractOrb; 7 | 8 | 9 | public class SlimeIntentEffect extends com.megacrit.cardcrawl.vfx.AbstractGameEffect { 10 | private static final float DURATION = .5F; 11 | private static final float FLASH_INTERVAL = 0.17F; 12 | private float intervalTimer = 0.0F; 13 | private Texture img; 14 | private AbstractOrb o; 15 | 16 | public SlimeIntentEffect(Texture img, AbstractOrb o, float duration) { 17 | this.duration = duration; 18 | this.img = img; 19 | this.o = o; 20 | } 21 | 22 | public void update() { 23 | this.intervalTimer -= Gdx.graphics.getDeltaTime(); 24 | 25 | com.megacrit.cardcrawl.dungeons.AbstractDungeon.effectsQueue.add(new SlimeIntentParticle(this.img, this.o)); 26 | 27 | 28 | this.duration -= Gdx.graphics.getDeltaTime(); 29 | 30 | if (this.duration < 0.0F) { 31 | 32 | 33 | this.isDone = true; 34 | } 35 | } 36 | public void dispose() { 37 | this.img.dispose(); 38 | this.isDone = true; 39 | 40 | } 41 | public void render(SpriteBatch sb) { 42 | } 43 | } 44 | 45 | 46 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/vfx/SlimeIntentMovement.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.vfx; 2 | 3 | 4 | import com.badlogic.gdx.Gdx; 5 | import com.badlogic.gdx.graphics.g2d.SpriteBatch; 6 | import com.badlogic.gdx.math.Interpolation; 7 | import com.megacrit.cardcrawl.orbs.AbstractOrb; 8 | 9 | 10 | public class SlimeIntentMovement extends com.megacrit.cardcrawl.vfx.AbstractGameEffect { 11 | 12 | private float ox; 13 | public AbstractOrb o; 14 | 15 | 16 | public SlimeIntentMovement(AbstractOrb o) { 17 | this.duration = 0.5F; 18 | this.o = o; 19 | this.ox = o.cX; 20 | 21 | this.renderBehind = true; 22 | } 23 | public void dispose() { 24 | this.isDone = true; 25 | 26 | } 27 | public void update() { 28 | 29 | 30 | o.cX = Interpolation.pow2.apply(ox, ox + 20, this.duration); 31 | 32 | 33 | this.duration -= Gdx.graphics.getDeltaTime(); 34 | if (this.duration < 0.0F) { 35 | this.isDone = true; 36 | } 37 | } 38 | 39 | 40 | public void render(SpriteBatch sb, float x, float y) { 41 | } 42 | 43 | 44 | public void render(SpriteBatch sb) { 45 | sb.setBlendFunction(770, 1); 46 | sb.setBlendFunction(770, 771); 47 | 48 | } 49 | } 50 | 51 | 52 | -------------------------------------------------------------------------------- /src/main/java/slimeboundclassic/vfx/SlimeIntentMovementEffect.java: -------------------------------------------------------------------------------- 1 | package slimeboundclassic.vfx; 2 | 3 | 4 | import com.badlogic.gdx.Gdx; 5 | import com.badlogic.gdx.graphics.g2d.SpriteBatch; 6 | import com.megacrit.cardcrawl.orbs.AbstractOrb; 7 | 8 | 9 | public class SlimeIntentMovementEffect extends com.megacrit.cardcrawl.vfx.AbstractGameEffect { 10 | private static final float DURATION = .5F; 11 | private static final float FLASH_INTERVAL = 0.17F; 12 | private float intervalTimer = 0.0F; 13 | private AbstractOrb o; 14 | 15 | public SlimeIntentMovementEffect(AbstractOrb o, float duration) { 16 | this.duration = duration; 17 | this.o = o; 18 | } 19 | public void dispose() { 20 | this.isDone = true; 21 | 22 | } 23 | public void update() { 24 | this.intervalTimer -= Gdx.graphics.getDeltaTime(); 25 | 26 | com.megacrit.cardcrawl.dungeons.AbstractDungeon.effectsQueue.add(new SlimeIntentMovement(this.o)); 27 | 28 | 29 | this.duration -= Gdx.graphics.getDeltaTime(); 30 | 31 | if (this.duration < 0.0F) { 32 | 33 | 34 | this.isDone = true; 35 | } 36 | } 37 | 38 | public void render(SpriteBatch sb) { 39 | } 40 | } 41 | 42 | 43 | -------------------------------------------------------------------------------- /src/main/resources/ModTheSpire.json: -------------------------------------------------------------------------------- 1 | { 2 | "modid": "SlimeboundClassic", 3 | "name": "Slimebound Classic", 4 | "author_list": ["Michael Mayhem"], 5 | "description": "The classic version of the Slimebound mod, prior to the release of Downfall. This mod will not be updated further - for the latest and greatest in Slime-based gameplay, check out the Downfall Expansion!", 6 | "version": "3.0.0", 7 | "sts_version": "01-03-2019", 8 | "mts_version": "3.6.3", 9 | "dependencies": ["basemod", "stslib"], 10 | "update_json": "https://api.github.com/repos/mikemayhemdev/SlimeboundMod/releases/latest" 11 | } 12 | -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/1024/bg_attack_slimebound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/1024/bg_attack_slimebound.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/1024/bg_power_slimebound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/1024/bg_power_slimebound.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/1024/bg_power_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/1024/bg_power_yellow.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/1024/bg_skill_slimebound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/1024/bg_skill_slimebound.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/1024/card_slimebound_orb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/1024/card_slimebound_orb.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/512/bg_attack_slimebound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/512/bg_attack_slimebound.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/512/bg_power_slimebound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/512/bg_power_slimebound.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/512/bg_skill_slimebound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/512/bg_skill_slimebound.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/512/card_slimebound_orb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/512/card_slimebound_orb.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/512/card_small_orb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/512/card_small_orb.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/badge.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/QuickStudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/QuickStudy.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/QuickStudy_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/QuickStudy_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/absorball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/absorball.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/absorball_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/absorball_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/acceleratetoxins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/acceleratetoxins.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/acceleratetoxins_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/acceleratetoxins_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/acidgelatin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/acidgelatin.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/acidgelatin_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/acidgelatin_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/acidtongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/acidtongue.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/acidtongue_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/acidtongue_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/alltogether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/alltogether.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/alltogether_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/alltogether_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/attackSlime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/attackSlime.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/attackSlime_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/attackSlime_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/bodyblow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/bodyblow.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/bodyblow_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/bodyblow_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/chargeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/chargeup.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/chargeup_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/chargeup_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/chomp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/chomp.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/chomp_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/chomp_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/circleofpower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/circleofpower.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/circleofpower_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/circleofpower_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/collect.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/collect_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/collect_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/conquer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/conquer.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/conquer_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/conquer_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/coordinatedstrike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/coordinatedstrike.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/coordinatedstrike_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/coordinatedstrike_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/corrosivespit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/corrosivespit.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/corrosivespit_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/corrosivespit_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/corrosivetackle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/corrosivetackle.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/corrosivetackle_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/corrosivetackle_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/darkvoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/darkvoid.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/darkvoid_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/darkvoid_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/defendSlime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/defendSlime.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/defendSlime_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/defendSlime_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/defensivemode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/defensivemode.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/defensivemode_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/defensivemode_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/defensivestance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/defensivestance.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/defensivestance_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/defensivestance_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/dissolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/dissolve.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/dissolve_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/dissolve_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/divider.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/divider_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/divider_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/doubleeverything.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/doubleeverything.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/doubleeverything_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/doubleeverything_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/douseinslime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/douseinslime.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/douseinslime_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/douseinslime_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/duplicatedform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/duplicatedform.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/duplicatedform_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/duplicatedform_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/duplicateslimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/duplicateslimes.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/duplicateslimes_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/duplicateslimes_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/efficiency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/efficiency.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/efficiency_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/efficiency_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/eventtackle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/eventtackle.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/eventtackle_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/eventtackle_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/faceslap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/faceslap.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/faceslap_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/faceslap_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/finishingtackle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/finishingtackle.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/finishingtackle_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/finishingtackle_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/firmfortitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/firmfortitude.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/firmfortitude_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/firmfortitude_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/flail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/flail.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/flail_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/flail_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/flametackle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/flametackle.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/flametackle_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/flametackle_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/focusedlick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/focusedlick.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/focusedlick_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/focusedlick_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/formablockade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/formablockade.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/formablockade_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/formablockade_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/formofpuddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/formofpuddle.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/formofpuddle_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/formofpuddle_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/gluttony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/gluttony.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/gluttony_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/gluttony_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/goopspray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/goopspray.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/goopspray_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/goopspray_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/grow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/grow.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/grow_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/grow_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/guardianwhirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/guardianwhirl.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/guardianwhirl_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/guardianwhirl_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/hardened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/hardened.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/hardened_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/hardened_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/hauntinglick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/hauntinglick.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/hauntinglick_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/hauntinglick_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/headslam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/headslam.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/headslam_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/headslam_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/hyper_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/hyper_beam.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/hyper_beam_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/hyper_beam_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/icky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/icky.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/icky_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/icky_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/itlookstasty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/itlookstasty.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/itlookstasty_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/itlookstasty_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/knowledgepool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/knowledgepool.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/knowledgepool_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/knowledgepool_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/laststand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/laststand.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/laststand_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/laststand_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/leechenergy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/leechenergy.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/leechenergy_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/leechenergy_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/leechingstrike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/leechingstrike.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/leechingstrike_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/leechingstrike_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/leechingtouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/leechingtouch.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/leechingtouch_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/leechingtouch_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/levelup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/levelup.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/levelup_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/levelup_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/lick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/lick.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/lick_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/lick_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/makesomeroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/makesomeroom.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/makesomeroom_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/makesomeroom_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/massfeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/massfeed.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/massfeed_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/massfeed_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/megalick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/megalick.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/megalick_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/megalick_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/minionmaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/minionmaster.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/minionmaster_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/minionmaster_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/morphcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/morphcard.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/morphcard_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/morphcard_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/morpheverything.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/morpheverything.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/morpheverything_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/morpheverything_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/overexertion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/overexertion.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/overexertion_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/overexertion_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/playbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/playbook.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/playbook_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/playbook_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/poisonlick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/poisonlick.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/poisonlick_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/poisonlick_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/poisontackle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/poisontackle.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/poisontackle_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/poisontackle_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/polybeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/polybeam.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/polybeam_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/polybeam_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/prepare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/prepare.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/prepare_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/prepare_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/preparedivider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/preparedivider.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/preparedivider_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/preparedivider_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/preparingbeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/preparingbeam.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/preparingbeam_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/preparingbeam_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/preparingcrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/preparingcrush.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/preparingcrush_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/preparingcrush_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/protect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/protect.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/protect_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/protect_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/quickspikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/quickspikes.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/quickspikes_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/quickspikes_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/quicktackle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/quicktackle.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/quicktackle_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/quicktackle_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/rainofgoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/rainofgoop.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/rainofgoop_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/rainofgoop_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/rapidheal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/rapidheal.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/rapidheal_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/rapidheal_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/reckless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/reckless.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/reckless_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/reckless_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/recollect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/recollect.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/recollect_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/recollect_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/recycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/recycling.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/recycling_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/recycling_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/retaliate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/retaliate.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/retaliate_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/retaliate_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/ripple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/ripple.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/ripple_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/ripple_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/ritual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/ritual.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/ritual_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/ritual_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/rollthrough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/rollthrough.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/rollthrough_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/rollthrough_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/samplinglick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/samplinglick.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/samplinglick_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/samplinglick_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/sear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/sear.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/sear_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/sear_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/sickeningtendril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/sickeningtendril.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/sickeningtendril_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/sickeningtendril_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimebarrage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimebarrage.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimebarrage_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimebarrage_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimecrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimecrush.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimecrush_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimecrush_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimepotheosis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimepotheosis.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimepotheosis_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimepotheosis_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimepunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimepunch.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimepunch_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimepunch_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimesacrifice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimesacrifice.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimesacrifice_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimesacrifice_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimetap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimetap.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimetap_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimetap_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimewave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimewave.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/slimewave_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/slimewave_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/spiked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/spiked.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/spiked_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/spiked_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/split.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/split_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/split_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitaggressive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitaggressive.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitaggressive_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitaggressive_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitbronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitbronze.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitbronze_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitbronze_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitbruisertoxic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitbruisertoxic.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitbruisertoxic_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitbruisertoxic_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitcultist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitcultist.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitcultist_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitcultist_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splithex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splithex.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splithex_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splithex_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitlicking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitlicking.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitlicking_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitlicking_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitlickingshield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitlickingshield.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitlickingshield_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitlickingshield_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitshield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitshield.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitshield_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitshield_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitsludging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitsludging.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splitsludging_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splitsludging_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splittingstrike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splittingstrike.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splittingstrike_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splittingstrike_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splittorchhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splittorchhead.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splittorchhead_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splittorchhead_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splittoxic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splittoxic.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/splittoxic_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/splittoxic_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/squareofprotection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/squareofprotection.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/squareofprotection_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/squareofprotection_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/stoptime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/stoptime.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/stoptime_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/stoptime_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/straygoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/straygoop.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/straygoop_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/straygoop_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/strikefrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/strikefrail.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/strikefrail_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/strikefrail_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/strikeweak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/strikeweak.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/strikeweak_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/strikeweak_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyautomaton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyautomaton.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyautomaton_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyautomaton_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyawakened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyawakened.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyawakened_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyawakened_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studychamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studychamp.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studychamp_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studychamp_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studycollector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studycollector.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studycollector_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studycollector_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyguardian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyguardian.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyguardian_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyguardian_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyhexaghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyhexaghost.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyhexaghost_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyhexaghost_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyshapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyshapes.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyshapes_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyshapes_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyspire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyspire.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studyspire_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studyspire_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studytimeeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studytimeeater.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/studytimeeater_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/studytimeeater_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/supersplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/supersplit.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/supersplit_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/supersplit_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/tackle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/tackle.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/tackle_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/tackle_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/tendrilflail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/tendrilflail.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/tendrilflail_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/tendrilflail_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/tendrillash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/tendrillash.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/tendrillash_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/tendrillash_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/tendrilstrike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/tendrilstrike.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/tendrilstrike_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/tendrilstrike_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/tonguelash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/tonguelash.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/tonguelash_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/tonguelash_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/usefulslime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/usefulslime.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/usefulslime_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/usefulslime_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/violentstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/violentstop.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/violentstop_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/violentstop_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/wastenot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/wastenot.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/wastenot_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/wastenot_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/youaremine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/youaremine.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/cards/youaremine_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/cards/youaremine_p.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/corpse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/corpse.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer1.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer1d.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer2.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer2d.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer3.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer3d.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer4.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer4d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer4d.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer5.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer5d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer5d.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/layer6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/layer6.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/orb/vfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/orb/vfx.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/shoulder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/shoulder.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/shoulder2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/shoulder2.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/char/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/char/skeleton.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/charSelect/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/charSelect/button.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/charSelect/emptyButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/charSelect/emptyButton.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/charSelect/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/charSelect/portrait.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/events/hunted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/events/hunted.jpg -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/events/hunted.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/events/hunted.pdn -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/events/slimeTome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/events/slimeTome.jpg -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/3.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/4.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/5.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/Torchhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/Torchhead.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/aggressive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/aggressive.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/attackBuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/attackBuff.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/attackDebuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/attackDebuff.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/attackDefend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/attackDefend.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/bronzeslime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/bronzeslime.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/cultist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/cultist.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/cultistleftstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/cultistleftstick.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/debuff1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/debuff1.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/debuff2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/debuff2.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/empty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/empty1.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/hex.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/licking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/licking.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/poisonous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/poisonous.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/sleep.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/orbs/sliming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/orbs/sliming.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/AcidTongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/AcidTongue.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/AcidTongueP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/AcidTongueP.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/AcidTongueS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/AcidTongueS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/BuffAttackSlimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/BuffAttackSlimes.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/BuffPoisonSlimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/BuffPoisonSlimes.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/BuffSlimingSlimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/BuffSlimingSlimes.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/BuffWeakenSlimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/BuffWeakenSlimes.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/Burning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/Burning.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/BurningS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/BurningS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/DelayedAttack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/DelayedAttack.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/DelayedAttackSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/DelayedAttackSmall.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/DuplicatedEcho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/DuplicatedEcho.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/DuplicatedEchoS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/DuplicatedEchoS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/DuplicatedEnergy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/DuplicatedEnergy.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/DuplicatedEnergyS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/DuplicatedEnergyS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/EnergyNextTurnS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/EnergyNextTurnS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/FirmFortitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/FirmFortitude.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/Gluttony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/Gluttony.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/GluttonyS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/GluttonyS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/GreedRespawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/GreedRespawn.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/Halved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/Halved.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/HalvedS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/HalvedS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/HasteSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/HasteSmall.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/LivingWallS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/LivingWallS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/Malleable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/Malleable.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/PoisonThorns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/PoisonThorns.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/PoisonThornsS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/PoisonThornsS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/PrepareCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/PrepareCard.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/PrepareCardS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/PrepareCardS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/Recycling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/Recycling.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/RecyclingS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/RecyclingS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/ScrapRespawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/ScrapRespawn.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/Sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/Sleep.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/SleepSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/SleepSmall.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/SlimeSacrifice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/SlimeSacrifice.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/SlimeSacrificeS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/SlimeSacrificeS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/Slimed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/Slimed.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/SlimedS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/SlimedS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/SplitForLess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/SplitForLess.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/SplitForLessS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/SplitForLessS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyAutomaton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyAutomaton.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyAutomatonS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyAutomatonS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyAwakened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyAwakened.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyAwakenedS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyAwakenedS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyChamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyChamp.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyChampS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyChampS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyCollector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyCollector.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyCollectorS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyCollectorS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyGuardian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyGuardian.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyGuardianS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyGuardianS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyHexaghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyHexaghost.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyHexaghostS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyHexaghostS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyShapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyShapes.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyShapesS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyShapesS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyTimeEater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyTimeEater.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/StudyTimeEaterS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/StudyTimeEaterS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/TackleDebuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/TackleDebuff.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/ThornsDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/ThornsDown.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/ThornsDownS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/ThornsDownS.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/darkRitual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/darkRitual.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/excessslime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/excessslime.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/nostalgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/nostalgia.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/polybeampower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/polybeampower.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/potency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/potency.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/recklessPower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/recklessPower.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/retaingreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/retaingreen.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/ritual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/ritual.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/tackleProtection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/tackleProtection.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/powers/toxicresidue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/powers/toxicresidue.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/dailysplitrelic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/dailysplitrelic.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/dailysplitrelicOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/dailysplitrelicOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/greedOoze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/greedOoze.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/greedOozeOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/greedOozeOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/heartofgoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/heartofgoo.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/heartofgooOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/heartofgooOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/heartofgooblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/heartofgooblack.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/minion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/minion.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/minionLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/minionLarge.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/minionOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/minionOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/oozeStone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/oozeStone.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/oozeStoneLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/oozeStoneLarge.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/oozeStoneOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/oozeStoneOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/protectiveGear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/protectiveGear.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/protectiveGearOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/protectiveGearOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/scrapOoze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/scrapOoze.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/scrapOozeOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/scrapOozeOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimedSkull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimedSkull.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimedSkullLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimedSkullLarge.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimedSkullOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimedSkullOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimedTail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimedTail.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimedTailLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimedTailLarge.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimedTailOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimedTailOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimedTailUsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimedTailUsed.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimedteaSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimedteaSet.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimedteaSetLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimedteaSetLarge.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimedteaSetOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimedteaSetOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimeplushie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimeplushie.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimeplushieLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimeplushieLarge.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/slimeplushieOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/slimeplushieOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/tinybowlerhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/tinybowlerhat.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/tinybowlerhatOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/tinybowlerhatOutline.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/relics/tinybowlerhatinverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/relics/tinybowlerhatinverted.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/scenes/Junglescene.atlas: -------------------------------------------------------------------------------- 1 | Junglescene.png 2 | size: 2048,2048 3 | format: RGBA8888 4 | filter: Linear,Linear 5 | repeat: none 6 | mod/bg1 7 | rotate: false 8 | xy: 2, 1200 9 | size: 1920, 501 10 | orig: 1920, 1136 11 | offset: 0, 445 12 | index: -1 13 | mod/ceiling 14 | rotate: false 15 | xy: 2, 994 16 | size: 1920, 204 17 | orig: 1920, 1136 18 | offset: 0, 932 19 | index: -1 20 | mod/fg 21 | rotate: false 22 | xy: 2, 344 23 | size: 1920, 648 24 | orig: 1920, 1080 25 | offset: 0, 0 26 | index: -1 27 | mod/fgGlow 28 | rotate: false 29 | xy: 2, 2 30 | size: 1920, 340 31 | orig: 1920, 1080 32 | offset: 0, 64 33 | index: -1 -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/scenes/Junglescene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/scenes/Junglescene.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/scenes/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/scenes/scene.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/scenes/scene2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/scenes/scene2.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/scenes/scene3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/scenes/scene3.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/scenes/scene5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/scenes/scene5.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/scenes/slimebound1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/scenes/slimebound1.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/scenes/slimebound2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/scenes/slimebound2.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/scenes/slimebound3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/scenes/slimebound3.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/ui/body7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/ui/body7.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/ui/scrapcampfire.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/ui/scrapcampfire.pdn -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/ui/scrapcampfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/ui/scrapcampfire.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/ui/scrapcampfiredisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/ui/scrapcampfiredisabled.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/vfx/coins.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/vfx/coins.pdn -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/vfx/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/vfx/coins.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/vfx/cultistleftstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/vfx/cultistleftstick.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/vfx/cultistrightstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/vfx/cultistrightstick.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/vfx/scrap.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/vfx/scrap.pdn -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/vfx/scrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/vfx/scrap.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/vfx/slap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/vfx/slap.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/vfx/slimeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/vfx/slimeball.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/vfx/slimeballWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/vfx/slimeballWhite.png -------------------------------------------------------------------------------- /src/main/resources/SlimeboundClassicImages/vfx/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/src/main/resources/SlimeboundClassicImages/vfx/tongue.png -------------------------------------------------------------------------------- /src/main/resources/localization/eng/Slimebound-CharacterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Slimebound": { 3 | "NAMES": [ 4 | "The Slimebound" 5 | ], 6 | "TEXT": [ 7 | "A rogue minion of the Spire, driven to conquer it.", 8 | "Must... absorb... the Heart..." 9 | ], 10 | "KEYWORDS": [ 11 | "A rogue minion of the Spire, driven to conquer it.", 12 | "Must... absorb... the Heart..." 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/localization/eng/Slimebound-DailyModStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:AllSplit": { 3 | "NAME": "Slime the Spire", 4 | "DESCRIPTION": "All enemies Split into two Slime enemies." 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/localization/eng/Slimebound-MonsterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/main/resources/localization/eng/Slimebound-PotionStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:SlimedPotion": { 3 | "NAME": "Jar of Slime", 4 | "DESCRIPTIONS": [ 5 | "Apply #b", 6 | " Goop." 7 | ] 8 | }, 9 | 10 | "SlimeboundClassic:SlimyTonguePotion": { 11 | "NAME": "Slimy Elixir", 12 | "DESCRIPTIONS": [ 13 | "Whenever an effect applies Goop, apply #b", 14 | " more." 15 | ] 16 | }, 17 | 18 | "SlimeboundClassic:SpawnSlimePotion": { 19 | "NAME": "Bottled Minion", 20 | "DESCRIPTIONS": [ 21 | "Spawn ", 22 | " random Slime minion." 23 | ] 24 | }, 25 | 26 | "SlimeboundClassic:ThreeZeroPotion": { 27 | "NAME": "Ooze-Infused Drink", 28 | "DESCRIPTIONS": [ 29 | "Add #b", 30 | " random 0-cost cards to your hand." 31 | ] 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/main/resources/localization/eng/Slimebound-UIStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "slimeboundConfigMenuText": { 3 | "TEXT": [ 4 | "Allow other characters to encounter some Slimebound relics.", 5 | "Allow other characters to encounter some Slimebound potions.", 6 | "Allow other characters to encounter some Slimebound events.", 7 | "Unlock everything (Not recommended)" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/localization/fra/Slimebound-CharacterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Slimebound": { 3 | "NAMES": [ 4 | "The Slimebound" 5 | ], 6 | "TEXT": [ 7 | "Anciennement fervant serviteur de la Tour, il tente désormais de la conquérir...", 8 | "Je dois... détruire...le Coeur..." 9 | ] 10 | } 11 | } -------------------------------------------------------------------------------- /src/main/resources/localization/fra/Slimebound-DailyModStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "SlimeboundClassic:AllSplit": { 4 | "NAME": "Slime La Tour", 5 | "DESCRIPTION": "Tous les ennemis se divisent en deux Slimes ennemis." 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/localization/fra/Slimebound-MonsterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/main/resources/localization/fra/Slimebound-PotionStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:SlimedPotion": { 3 | "NAME": "Jarre de Slimed", 4 | "DESCRIPTIONS": [ 5 | "Applique #b", 6 | " Slimed." 7 | ] 8 | }, 9 | 10 | "SlimeboundClassic:SlimyTonguePotion": { 11 | "NAME": "Slimy Elixir", 12 | "DESCRIPTIONS": [ 13 | "Quand vous appliquez Slimed sur un ennemi, appliquez #b", 14 | " de plus." 15 | ] 16 | }, 17 | 18 | "SlimeboundClassic:SpawnSlimePotion": { 19 | "NAME": "Bottled Minion", 20 | "DESCRIPTIONS": [ 21 | "Invoque ", 22 | " Aléatoire Slime." 23 | ] 24 | }, 25 | 26 | "SlimeboundClassic:ThreeZeroPotion": { 27 | "NAME": "Ooze-Thé infusé", 28 | "DESCRIPTIONS": [ 29 | "Ajoutez #b", 30 | " Carte aléatoire coûtant 0 à votre main." 31 | ] 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/main/resources/localization/fra/Slimebound-UIStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "slimeboundConfigMenuText": { 3 | "TEXT": [ 4 | "Allow other characters to encounter some Slimebound relics.", 5 | "Allow other characters to encounter some Slimebound potions.", 6 | "Allow other characters to encounter some Slimebound events.", 7 | "Unlock everything (Not recommended)" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/localization/jpn/Slimebound-CharacterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Slimebound": { 3 | "NAMES": [ 4 | "スライムバウンド" 5 | ], 6 | "TEXT": [ 7 | "Spireの乱暴者、征服に向かう。", 8 | "心臓を... 吸収... しなければならない..." 9 | ], 10 | "KEYWORDS": [ 11 | "Spireの乱暴者、征服に向かう。", 12 | "心臓を... 吸収... しなければならない..." 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/localization/jpn/Slimebound-DailyModStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:AllSplit": { 3 | "NAME": "スライム・ザ・スパイア", 4 | "DESCRIPTION": "全ての敵は2つのスライムに分裂する。" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/localization/jpn/Slimebound-MonsterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/main/resources/localization/jpn/Slimebound-PotionStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:SlimedPotion": { 3 | "NAME": "スライムの瓶", 4 | "DESCRIPTIONS": [ 5 | "粘液 #b", 6 | " を与える。" 7 | ] 8 | }, 9 | 10 | "SlimeboundClassic:SlimyTonguePotion": { 11 | "NAME": "スライミーエリクサー", 12 | "DESCRIPTIONS": [ 13 | "粘液 与えるとき、さらに 粘液 #b", 14 | " を与える。" 15 | ] 16 | }, 17 | 18 | "SlimeboundClassic:SpawnSlimePotion": { 19 | "NAME": "ボトル入りミニオン", 20 | "DESCRIPTIONS": [ 21 | "ランダムなスライムを", 22 | " 産み出す。" 23 | ] 24 | }, 25 | 26 | "SlimeboundClassic:ThreeZeroPotion": { 27 | "NAME": "ウーズ入りドリンク", 28 | "DESCRIPTIONS": [ 29 | "#b", 30 | " 枚のランダムなコスト0のカードを手札に加える。" 31 | ] 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/main/resources/localization/jpn/Slimebound-UIStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "slimeboundConfigMenuText": { 3 | "TEXT": [ 4 | "他のキャラクターが本MODのレリックを使える。", 5 | "他のキャラクターが本MODのポーションを使える。", 6 | "他のキャラクターが本MODのイベントに遭遇する。", 7 | "すべてをアンロックする (おすすめしません)" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/localization/kor/Slimebound-CharacterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Slimebound": { 3 | "NAMES": [ 4 | "끈적한슬라임" 5 | ], 6 | "TEXT": [ 7 | "그저 첨탑을 떠도는 졸개이지만, 갑자기 그곳을 정복하고 싶어졌습니다.", 8 | "심장.. 흡수.. 해야해.. " 9 | ], 10 | "KEYWORDS": [ 11 | "그저 첨탑을 떠도는 졸개이지만, 갑자기 그곳을 정복하고 싶어졌습니다.", 12 | "심장.. 흡수.. 해야해.." 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/localization/kor/Slimebound-DailyModStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:AllSplit": { 3 | "NAME": "첨탑을 점액투성이로", 4 | "DESCRIPTION": "모든 적들이 슬라임 둘로 분열합니다." 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/localization/kor/Slimebound-MonsterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/main/resources/localization/kor/Slimebound-PotionStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:SlimedPotion": { 3 | "NAME": "슬라임 병", 4 | "DESCRIPTIONS": [ 5 | "점액을 #b", 6 | " 적용합니다." 7 | ] 8 | }, 9 | 10 | "SlimeboundClassic:SlimyTonguePotion": { 11 | "NAME": "점액질 엘릭서", 12 | "DESCRIPTIONS": [ 13 | "점액을 적용할때 마다 #b", 14 | " 더 적용합니다." 15 | ] 16 | }, 17 | 18 | "SlimeboundClassic:SpawnSlimePotion": { 19 | "NAME": "병속의 부하", 20 | "DESCRIPTIONS": [ 21 | "무작위 슬라임 ", 22 | " 을 생성합니다." 23 | ] 24 | }, 25 | 26 | "SlimeboundClassic:ThreeZeroPotion": { 27 | "NAME": "수액충전된 음료", 28 | "DESCRIPTIONS": [ 29 | "비용이 0인 무작위 카드를 #b", 30 | " 개 손에 넣습니다." 31 | ] 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/main/resources/localization/kor/Slimebound-UIStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "slimeboundConfigMenuText": { 3 | "TEXT": [ 4 | "Allow other characters to encounter some Slimebound relics.", 5 | "Allow other characters to encounter some Slimebound potions.", 6 | "Allow other characters to encounter some Slimebound events.", 7 | "Unlock everything (Not recommended)" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/localization/zhs/Slimebound-CharacterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Slimebound": { 3 | "NAMES": [ 4 | "黏黏史莱姆" 5 | ], 6 | "TEXT": [ 7 | "曾是尖塔中的仆从,被驱使着,要征服这座尖塔", 8 | "一定要... 将心脏... 吞噬" 9 | ], 10 | "KEYWORDS": [ 11 | "曾是尖塔中的仆从,被驱使着,要征服这座尖塔", 12 | "一定要... 将心脏... 吞噬" 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/localization/zhs/Slimebound-DailyModStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:AllSplit": { 3 | "NAME": "黏黏尖塔", 4 | "DESCRIPTION": "所有敌人都将分裂成两个史莱姆敌人" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/localization/zhs/Slimebound-MonsterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/main/resources/localization/zhs/Slimebound-PotionStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:SlimedPotion": { 3 | "NAME": "罐装黏液", 4 | "DESCRIPTIONS": [ 5 | "给予 #b", 6 | " 层 黏液 。" 7 | ] 8 | }, 9 | 10 | "SlimeboundClassic:SlimyTonguePotion": { 11 | "NAME": "黏液精华", 12 | "DESCRIPTIONS": [ 13 | "本场战斗中,每次给予黏液时,额外给予 #b", 14 | " 层黏液。" 15 | ] 16 | }, 17 | 18 | "SlimeboundClassic:SpawnSlimePotion": { 19 | "NAME": "瓶装爪牙", 20 | "DESCRIPTIONS": [ 21 | " 分裂 出 ", 22 | " 只随机史莱姆。" 23 | ] 24 | }, 25 | 26 | "SlimeboundClassic:ThreeZeroPotion": { 27 | "NAME": "稠化饮料", 28 | "DESCRIPTIONS": [ 29 | "在你的手牌中加入 #b", 30 | " 张随机0费牌。" 31 | ] 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/main/resources/localization/zhs/Slimebound-UIStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "slimeboundConfigMenuText": { 3 | "TEXT": [ 4 | "允许其他角色遇到史莱姆相关【遗物】", 5 | "允许其他角色遇到史莱姆相关【药水】", 6 | "允许其他角色遇到史莱姆相关【事件】", 7 | "解锁全部内容(不推荐)" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/localization/zht/Slimebound-CharacterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Slimebound": { 3 | "NAMES": [ 4 | "黏黏史萊姆" 5 | ], 6 | "TEXT": [ 7 | "曾是高塔中的僕從。叛離並誓要征服高塔。", 8 | "心臟... 吞噬..." 9 | ], 10 | "KEYWORDS": [ 11 | "曾是高塔中的僕從。叛離並誓要征服高塔。", 12 | "心臟... 吞噬..." 13 | ] 14 | } 15 | } -------------------------------------------------------------------------------- /src/main/resources/localization/zht/Slimebound-DailyModStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:AllSplit": { 3 | "NAME": "黏黏高塔", 4 | "DESCRIPTION": "所有敵人都將分裂成兩個史萊姆敵人" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/localization/zht/Slimebound-MonsterStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /src/main/resources/localization/zht/Slimebound-PotionStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SlimeboundClassic:SlimedPotion": { 3 | "NAME": "罐裝黏液", 4 | "DESCRIPTIONS": [ 5 | "給予 #b", 6 | " 層 黏液" 7 | ] 8 | }, 9 | 10 | "SlimeboundClassic:SlimyTonguePotion": { 11 | "NAME": "黏液精華", 12 | "DESCRIPTIONS": [ 13 | "本場戰鬥中,每給予 黏液 時,額外給予 #b", 14 | " 層 黏液" 15 | ] 16 | }, 17 | 18 | "SlimeboundClassic:SpawnSlimePotion": { 19 | "NAME": "瓶裝爪牙", 20 | "DESCRIPTIONS": [ 21 | "分裂 ", 22 | " 隻隨機史萊姆" 23 | ] 24 | }, 25 | 26 | "SlimeboundClassic:ThreeZeroPotion": { 27 | "NAME": "稠化飲料", 28 | "DESCRIPTIONS": [ 29 | "增加 #b", 30 | " 張隨機0耗能牌到手牌" 31 | ] 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/main/resources/localization/zht/Slimebound-UIStrings.json: -------------------------------------------------------------------------------- 1 | { 2 | "slimeboundConfigMenuText": { 3 | "TEXT": [ 4 | "允許其他角色拿到部分Slimebound(黏黏史莱姆)的遺物", 5 | "允許其他角色拿到部分Slimebound(黏黏史莱姆)的藥水", 6 | "允許其他角色拿到部分Slimebound(黏黏史莱姆)的事件", 7 | "解鎖所有東西(不建議)" 8 | ] 9 | } 10 | } -------------------------------------------------------------------------------- /ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/ss1.png -------------------------------------------------------------------------------- /ss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikemayhemdev/SlimeboundMod/8eb76f7dc4484648cd143aaf472568d3fb0ce0cd/ss2.png --------------------------------------------------------------------------------