├── .actionScriptProperties ├── .gitattributes ├── .github └── workflows │ └── ant.yml ├── .gitignore ├── .gitmodules ├── .idea ├── .name ├── artifacts │ └── dist.xml ├── codeStyleSettings.xml ├── compiler.xml ├── encodings.xml ├── flexCompiler.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── libraries │ └── lib.xml ├── misc.xml ├── modules.xml ├── runConfigurations │ ├── CoC_debug__Debugger_.xml │ └── CoC_release__Debugger_.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml └── vcs.xml ├── .project ├── CODING.md ├── CONTRIBUTING.md ├── CoC-AIR.fla ├── CoC-STANDALONE.fla ├── Corruption-of-Champions-FD-AIR.as3proj ├── Corruption-of-Champions-FD-STANDALONE.as3proj ├── Corruption-of-Champions-FD-STANDALONE.lxml ├── Corruption-of-Champions.iml ├── Dockerfile ├── ISSUE_TEMPLATE.md ├── README.md ├── TestAIR.bat ├── application.xml ├── artifacts └── .keep ├── asconfig.json ├── assets ├── CooperBlackStd.otf ├── HowToBugreport1.png ├── HowToBugreport2.png ├── HowToBugreport3.png ├── Parser Demo - Page 1.png ├── Parser Demo - Page 2.png ├── Parser Demo - Page 3.png ├── Shrewsbury-Titling Bold.ttf └── Thumbs.db ├── build.xml ├── classes ├── classes │ ├── Achievement.as │ ├── AchievementMenu.as │ ├── Appearance.as │ ├── Ass.as │ ├── BaseContent.as │ ├── Bindings.as │ ├── BodyParts │ │ ├── Antennae.as │ │ ├── Arms.as │ │ ├── BaseBodyPart.as │ │ ├── Beard.as │ │ ├── Butt.as │ │ ├── Claws.as │ │ ├── Ears.as │ │ ├── Eyes.as │ │ ├── Face.as │ │ ├── Gills.as │ │ ├── Hair.as │ │ ├── Hips.as │ │ ├── Horns.as │ │ ├── LowerBody.as │ │ ├── Neck.as │ │ ├── Piercing.as │ │ ├── Readme.md │ │ ├── RearBody.as │ │ ├── Skin.as │ │ ├── Tail.as │ │ ├── Tongue.as │ │ ├── Udder.as │ │ ├── UnderBody.as │ │ └── Wings.as │ ├── BoundControlMethod.as │ ├── BreastRow.as │ ├── BreastStore.as │ ├── CharCreation.as │ ├── CharSpecial.as │ ├── Character.as │ ├── CoC.as │ ├── CoC_Settings.as │ ├── Cock.as │ ├── CockTypesEnum.as │ ├── Creature.as │ ├── Credits.as │ ├── DebugMenu.as │ ├── DefaultDict.as │ ├── Enum.as │ ├── GameSettings.as │ ├── GlobalFlags │ │ ├── kACHIEVEMENTS.as │ │ ├── kFLAGS.as │ │ └── kGAMECLASS.as │ ├── Image.as │ ├── ImageManager.as │ ├── InputManager.as │ ├── ItemSlot.as │ ├── ItemType.as │ ├── Items │ │ ├── Armor.as │ │ ├── ArmorLib.as │ │ ├── Armors │ │ │ ├── ArmorWithPerk.as │ │ │ ├── BeeArmor.as │ │ │ ├── BimboSkirt.as │ │ │ ├── ComfortableClothes.as │ │ │ ├── ComfortableUnderclothes.as │ │ │ ├── FurLoincloth.as │ │ │ ├── GooArmor.as │ │ │ ├── Gown.as │ │ │ ├── InquisitorsCorset.as │ │ │ ├── InquisitorsRobes.as │ │ │ ├── LeatherArmorSegments.as │ │ │ ├── LethiciteArmor.as │ │ │ ├── LustyMaidensArmor.as │ │ │ ├── MaraeArmor.as │ │ │ ├── NagaSilkDress.as │ │ │ ├── Nothing.as │ │ │ ├── PureMaraeArmor.as │ │ │ ├── SeductiveArmor.as │ │ │ ├── SeductiveArmorUntrapped.as │ │ │ └── SluttySwimwear.as │ │ ├── Consumable.as │ │ ├── ConsumableLib.as │ │ ├── Consumables │ │ │ ├── AkbalSaliva.as │ │ │ ├── BeeHoney.as │ │ │ ├── BehemothCum.as │ │ │ ├── BimboChampagne.as │ │ │ ├── BimboLiqueur.as │ │ │ ├── BlackCatBeer.as │ │ │ ├── BlackRubberEgg.as │ │ │ ├── BlackSpellBook.as │ │ │ ├── BlueEgg.as │ │ │ ├── BodyLotion.as │ │ │ ├── BroBrew.as │ │ │ ├── BrownEgg.as │ │ │ ├── CaninePepper.as │ │ │ ├── CeruleanPotion.as │ │ │ ├── Clovis.as │ │ │ ├── Coal.as │ │ │ ├── CumBread.as │ │ │ ├── CustomOviElixir.as │ │ │ ├── DeBimbo.as │ │ │ ├── EchidnaCake.as │ │ │ ├── Ectoplasm.as │ │ │ ├── EmberEgg.as │ │ │ ├── EmberTFs.as │ │ │ ├── Equinum.as │ │ │ ├── FerretFruit.as │ │ │ ├── FishFillet.as │ │ │ ├── FoxBerry.as │ │ │ ├── FoxJewel.as │ │ │ ├── FrothyBeer.as │ │ │ ├── GiantChocolateCupcake.as │ │ │ ├── GirthoPlus.as │ │ │ ├── GoblinAle.as │ │ │ ├── GodMead.as │ │ │ ├── GoldenRind.as │ │ │ ├── GoldenSeed.as │ │ │ ├── GroPlus.as │ │ │ ├── HairDye.as │ │ │ ├── HairExtensionSerum.as │ │ │ ├── HardBiscuits.as │ │ │ ├── HealPill.as │ │ │ ├── HerbalContraceptive.as │ │ │ ├── IceShard.as │ │ │ ├── ImpFood.as │ │ │ ├── IncubiDraft.as │ │ │ ├── IsabellaMilk.as │ │ │ ├── KangaFruit.as │ │ │ ├── KitsuneGift.as │ │ │ ├── LaBova.as │ │ │ ├── Lactaid.as │ │ │ ├── LustDraft.as │ │ │ ├── LustStick.as │ │ │ ├── MarbleMilk.as │ │ │ ├── MilkPotion.as │ │ │ ├── MinotaurBlood.as │ │ │ ├── MinotaurCum.as │ │ │ ├── Mint.as │ │ │ ├── MouseCocoa.as │ │ │ ├── NeonPinkEgg.as │ │ │ ├── NumbRocks.as │ │ │ ├── NumbingOil.as │ │ │ ├── OculumArachnae.as │ │ │ ├── OmnibiJuice.as │ │ │ ├── OvipositionElixir.as │ │ │ ├── OvipositionMax.as │ │ │ ├── PeppermintWhite.as │ │ │ ├── PhoukaWhiskey.as │ │ │ ├── PigTruffle.as │ │ │ ├── PinkEgg.as │ │ │ ├── PrincessPucker.as │ │ │ ├── PrisonBread.as │ │ │ ├── ProMead.as │ │ │ ├── PurePearl.as │ │ │ ├── PurityPeach.as │ │ │ ├── PurityPhilter.as │ │ │ ├── PurpleEgg.as │ │ │ ├── PurpleFruit.as │ │ │ ├── RedRiverRoot.as │ │ │ ├── Reducto.as │ │ │ ├── RegularHummus.as │ │ │ ├── Reptilum.as │ │ │ ├── RhinoSteak.as │ │ │ ├── RingtailFig.as │ │ │ ├── RizzaRoot.as │ │ │ ├── Salamanderfirewater.as │ │ │ ├── SatyrWine.as │ │ │ ├── ScholarsTea.as │ │ │ ├── SensitivityDraft.as │ │ │ ├── SharkTooth.as │ │ │ ├── SheepMilk.as │ │ │ ├── ShriveledTentacle.as │ │ │ ├── SimpleConsumable.as │ │ │ ├── SkinOil.as │ │ │ ├── SnakeOil.as │ │ │ ├── SpringWater.as │ │ │ ├── SuccubiMilk.as │ │ │ ├── SuccubisDelight.as │ │ │ ├── SuccubisDream.as │ │ │ ├── SuperHummus.as │ │ │ ├── SweetGossamer.as │ │ │ ├── TatteredScroll.as │ │ │ ├── Taurinum.as │ │ │ ├── TonOTrice.as │ │ │ ├── TrailMix.as │ │ │ ├── TrapOil.as │ │ │ ├── UnlabeledBrownMilkBottle.as │ │ │ ├── UrtaCum.as │ │ │ ├── VitalityTincture.as │ │ │ ├── WetCloth.as │ │ │ ├── WhiskerFruit.as │ │ │ ├── WhiteEgg.as │ │ │ ├── WhiteSpellBook.as │ │ │ ├── WingStick.as │ │ │ ├── WinterPudding.as │ │ │ └── WolfPepper.as │ │ ├── Jewelries │ │ │ └── Nothing.as │ │ ├── Jewelry.as │ │ ├── JewelryLib.as │ │ ├── MiscItemLib.as │ │ ├── Mutations.as │ │ ├── Other │ │ │ ├── DebugWand.as │ │ │ └── SimpleUseable.as │ │ ├── Shield.as │ │ ├── ShieldLib.as │ │ ├── Shields │ │ │ ├── Buckler.as │ │ │ ├── DragonShellShield.as │ │ │ ├── GreatShield.as │ │ │ ├── KiteShield.as │ │ │ ├── Nothing.as │ │ │ ├── TowerShield.as │ │ │ └── WoodenShield.as │ │ ├── Undergarment.as │ │ ├── UndergarmentLib.as │ │ ├── Undergarments │ │ │ ├── ComfortableUnderclothes.as │ │ │ ├── Nothing.as │ │ │ └── UndergarmentWithPerk.as │ │ ├── Useable.as │ │ ├── UseableLib.as │ │ ├── Weapon.as │ │ ├── WeaponLib.as │ │ └── Weapons │ │ │ ├── BeautifulSword.as │ │ │ ├── Blunderbuss.as │ │ │ ├── BrokenBeautifulSword.as │ │ │ ├── BrokenScarredBlade.as │ │ │ ├── Crossbow.as │ │ │ ├── Dagger.as │ │ │ ├── DivinePearlSword.as │ │ │ ├── EldritchStaff.as │ │ │ ├── Fists.as │ │ │ ├── Flail.as │ │ │ ├── FlintlockPistol.as │ │ │ ├── Halberd.as │ │ │ ├── HookedGauntlet.as │ │ │ ├── HugeWarhammer.as │ │ │ ├── HuntsmansCane.as │ │ │ ├── JeweledRapier.as │ │ │ ├── Katana.as │ │ │ ├── KihasAxe.as │ │ │ ├── LargeAxe.as │ │ │ ├── LargeClaymore.as │ │ │ ├── LargeHammer.as │ │ │ ├── LethicesWhip.as │ │ │ ├── LethiciteStaff.as │ │ │ ├── LustDagger.as │ │ │ ├── Mace.as │ │ │ ├── MidnightRapier.as │ │ │ ├── RaphaelsRapier.as │ │ │ ├── RidingCrop.as │ │ │ ├── RunedSpellblade.as │ │ │ ├── ScarredBlade.as │ │ │ ├── Scimitar.as │ │ │ ├── Spear.as │ │ │ ├── Spellblade.as │ │ │ ├── SpikedGauntlet.as │ │ │ ├── UglySword.as │ │ │ ├── WeaponWithPerk.as │ │ │ ├── Whip.as │ │ │ └── WizardsStaff.as │ ├── KeyItem.as │ ├── MainMenu.as │ ├── MainViewManager.as │ ├── Measurements.as │ ├── Monster.as │ ├── Output.as │ ├── Parser │ │ ├── Parser.as │ │ ├── conditionalConverters.as │ │ ├── doubleArgLookups.as │ │ ├── npcLookups.as │ │ └── singleArgLookups.as │ ├── Perk.as │ ├── PerkLib.as │ ├── PerkTree.as │ ├── PerkType.as │ ├── Perks │ │ ├── AscensionDesiresPerk.as │ │ ├── AscensionEndurancePerk.as │ │ ├── AscensionFertilityPerk.as │ │ ├── AscensionFortunePerk.as │ │ ├── AscensionMoralShifterPerk.as │ │ ├── AscensionMysticalityPerk.as │ │ ├── AscensionTolerancePerk.as │ │ ├── AscensionVirilityPerk.as │ │ ├── AscensionWisdomPerk.as │ │ ├── CleansingPalmPerk.as │ │ ├── ControlledBreathPerk.as │ │ ├── ElvenBountyPerk.as │ │ ├── EnlightenedPerk.as │ │ ├── MilkMaidPerk.as │ │ ├── PentUpPerk.as │ │ ├── PiercedCrimstonePerk.as │ │ ├── PiercedFertitePerk.as │ │ ├── PiercedIcestonePerk.as │ │ ├── Regeneration2Perk.as │ │ ├── RegenerationPerk.as │ │ ├── SluttySeductionPerk.as │ │ ├── SpellcastingAffinityPerk.as │ │ ├── WizardsEndurancePerk.as │ │ └── WizardsFocusPerk.as │ ├── Player.as │ ├── PlayerAppearance.as │ ├── PlayerEvents.as │ ├── PlayerHelper.as │ ├── PlayerInfo.as │ ├── PregnancyStore.as │ ├── SaveAwareInterface.as │ ├── Saves.as │ ├── Scenes │ │ ├── API │ │ │ ├── ComplexEncounter.as │ │ │ ├── Encounter.as │ │ │ ├── Encounters.as │ │ │ ├── FnHelpers.as │ │ │ ├── GroupEncounter.as │ │ │ ├── IExplorable.as │ │ │ ├── LateinitEncounter.as │ │ │ └── SimpleEncounter.as │ │ ├── AnalPregnancy.as │ │ ├── Areas │ │ │ ├── Bog.as │ │ │ ├── Bog │ │ │ │ ├── ChameleonGirl.as │ │ │ │ ├── ChameleonGirlScene.as │ │ │ │ ├── FrogGirlScene.as │ │ │ │ ├── LizanRogue.as │ │ │ │ ├── LizanRogueScene.as │ │ │ │ ├── Phouka.as │ │ │ │ └── PhoukaScene.as │ │ │ ├── DeepWoods.as │ │ │ ├── Desert.as │ │ │ ├── Desert │ │ │ │ ├── AntsScene.as │ │ │ │ ├── CumWitch.as │ │ │ │ ├── DemonPack.as │ │ │ │ ├── Ghoul.as │ │ │ │ ├── GhoulScene.as │ │ │ │ ├── Naga.as │ │ │ │ ├── NagaScene.as │ │ │ │ ├── Oasis.as │ │ │ │ ├── SandTrap.as │ │ │ │ ├── SandTrapScene.as │ │ │ │ ├── SandWitch.as │ │ │ │ ├── SandWitchScene.as │ │ │ │ └── Wanderer.as │ │ │ ├── Forest.as │ │ │ ├── Forest │ │ │ │ ├── Aiko.as │ │ │ │ ├── AikoScene.as │ │ │ │ ├── Akbal.as │ │ │ │ ├── AkbalScene.as │ │ │ │ ├── BaseKitsune.as │ │ │ │ ├── BeeGirl.as │ │ │ │ ├── BeeGirlScene.as │ │ │ │ ├── CorruptedGlade.as │ │ │ │ ├── Dryad.as │ │ │ │ ├── DryadScene.as │ │ │ │ ├── ErlKingScene.as │ │ │ │ ├── Essrayle.as │ │ │ │ ├── Faerie.as │ │ │ │ ├── Kitsune.as │ │ │ │ ├── KitsuneScene.as │ │ │ │ ├── PlantGirlScene.as │ │ │ │ ├── TamainsDaughtersScene.as │ │ │ │ ├── Tamani.as │ │ │ │ ├── TamaniScene.as │ │ │ │ ├── TamanisDaughters.as │ │ │ │ ├── TentacleBeast.as │ │ │ │ ├── TentacleBeastScene.as │ │ │ │ └── Yamata.as │ │ │ ├── GlacialRift.as │ │ │ ├── GlacialRift │ │ │ │ ├── Amarok.as │ │ │ │ ├── AmarokScene.as │ │ │ │ ├── FrostGiant.as │ │ │ │ ├── FrostGiantScene.as │ │ │ │ ├── Valkyrie.as │ │ │ │ ├── ValkyrieScene.as │ │ │ │ ├── Yeti.as │ │ │ │ └── YetiScene.as │ │ │ ├── HighMountains.as │ │ │ ├── HighMountains │ │ │ │ ├── Basilisk.as │ │ │ │ ├── BasiliskScene.as │ │ │ │ ├── Cockatrice.as │ │ │ │ ├── CockatriceScene.as │ │ │ │ ├── Harpy.as │ │ │ │ ├── HarpyScene.as │ │ │ │ ├── Izumi.as │ │ │ │ ├── IzumiScene.as │ │ │ │ ├── Minerva.as │ │ │ │ ├── MinervaCorruption.as │ │ │ │ ├── MinervaPurification.as │ │ │ │ ├── MinervaScene.as │ │ │ │ ├── MinotaurMob.as │ │ │ │ ├── MinotaurMobScene.as │ │ │ │ ├── Phoenix.as │ │ │ │ ├── PhoenixScene.as │ │ │ │ └── WingedCockatrice.as │ │ │ ├── Lake.as │ │ │ ├── Lake │ │ │ │ ├── AbstractLakeContent.as │ │ │ │ ├── CalluScene.as │ │ │ │ ├── FetishCultist.as │ │ │ │ ├── FetishCultistScene.as │ │ │ │ ├── FetishZealot.as │ │ │ │ ├── FetishZealotScene.as │ │ │ │ ├── GooGirl.as │ │ │ │ ├── GooGirlScene.as │ │ │ │ ├── GreenSlime.as │ │ │ │ ├── GreenSlimeScene.as │ │ │ │ ├── Kaiju.as │ │ │ │ └── SwordInStone.as │ │ │ ├── Mountain.as │ │ │ ├── Mountain │ │ │ │ ├── HellHound.as │ │ │ │ ├── HellHoundScene.as │ │ │ │ ├── InfestedHellhound.as │ │ │ │ ├── InfestedHellhoundScene.as │ │ │ │ ├── Minotaur.as │ │ │ │ ├── MinotaurScene.as │ │ │ │ ├── Salon.as │ │ │ │ ├── WormMass.as │ │ │ │ └── WormsScene.as │ │ │ ├── Plains.as │ │ │ ├── Plains │ │ │ │ ├── BazaarGatekeeper.as │ │ │ │ ├── BunnyGirl.as │ │ │ │ ├── Gnoll.as │ │ │ │ ├── GnollScene.as │ │ │ │ ├── GnollSpearThrower.as │ │ │ │ ├── GnollSpearThrowerScene.as │ │ │ │ ├── Satyr.as │ │ │ │ └── SatyrScene.as │ │ │ ├── Swamp.as │ │ │ ├── Swamp │ │ │ │ ├── AbstractSpiderMorph.as │ │ │ │ ├── CorruptedDrider.as │ │ │ │ ├── CorruptedDriderScene.as │ │ │ │ ├── FemaleSpiderMorph.as │ │ │ │ ├── FemaleSpiderMorphScene.as │ │ │ │ ├── LizanRogue.as │ │ │ │ ├── LizanRogueScene.as │ │ │ │ ├── MaleSpiderMorph.as │ │ │ │ ├── MaleSpiderMorphScene.as │ │ │ │ ├── Rogar.as │ │ │ │ └── SpiderMorphMob.as │ │ │ ├── VolcanicCrag.as │ │ │ └── VolcanicCrag │ │ │ │ ├── Behemoth.as │ │ │ │ └── BehemothScene.as │ │ ├── BimboProgression.as │ │ ├── Camp.as │ │ ├── Camp │ │ │ ├── CabinProgress.as │ │ │ ├── ImpGang.as │ │ │ └── ScarredBlade.as │ │ ├── Codex.as │ │ ├── Combat │ │ │ ├── Combat.as │ │ │ ├── CombatAbilities.as │ │ │ └── CombatTeases.as │ │ ├── CommonEncounters.as │ │ ├── Crafting.as │ │ ├── Dreams.as │ │ ├── Dungeons │ │ │ ├── AnzuPalace.as │ │ │ ├── AnzuPalace │ │ │ │ └── AnzuScene.as │ │ │ ├── DeepCave.as │ │ │ ├── DeepCave │ │ │ │ ├── EncapsulationPod.as │ │ │ │ ├── ImpHorde.as │ │ │ │ ├── Vala.as │ │ │ │ ├── ValaScene.as │ │ │ │ └── Zetaz.as │ │ │ ├── DesertCave.as │ │ │ ├── DesertCave │ │ │ │ ├── SandMother.as │ │ │ │ └── SandWitchMob.as │ │ │ ├── DragonCity.as │ │ │ ├── DragonCity │ │ │ │ ├── EmberInteractions.as │ │ │ │ ├── Kobold.as │ │ │ │ ├── KoboldBroodmother.as │ │ │ │ ├── KoboldBroodmotherScenes.as │ │ │ │ ├── KoboldGoddess.as │ │ │ │ ├── KoboldGoddessScenes.as │ │ │ │ └── KoboldScenes.as │ │ │ ├── DungeonAbstractContent.as │ │ │ ├── DungeonCore.as │ │ │ ├── DungeonMap.as │ │ │ ├── Factory.as │ │ │ ├── Factory │ │ │ │ ├── IncubusMechanic.as │ │ │ │ ├── IncubusMechanicScenes.as │ │ │ │ ├── OmnibusOverseer.as │ │ │ │ ├── OmnibusOverseerScene.as │ │ │ │ ├── SecretarialSuccubus.as │ │ │ │ └── SecretarialSuccubusScene.as │ │ │ ├── FetishChurch.as │ │ │ ├── HelDungeon.as │ │ │ ├── HelDungeon │ │ │ │ ├── Brigid.as │ │ │ │ ├── BrigidScene.as │ │ │ │ ├── HarpyMob.as │ │ │ │ ├── HarpyQueen.as │ │ │ │ └── PhoenixPlatoon.as │ │ │ ├── HellhoundComplex.as │ │ │ ├── HellhoundComplex │ │ │ │ └── HellhoundMaster.as │ │ │ ├── LethicesKeep │ │ │ │ ├── Doppelganger.as │ │ │ │ ├── DoppelgangerScenes.as │ │ │ │ ├── DriderIncubus.as │ │ │ │ ├── DriderIncubusScenes.as │ │ │ │ ├── Excellia.as │ │ │ │ ├── HermCentaur.as │ │ │ │ ├── HermCentaurScenes.as │ │ │ │ ├── JeanClaude.as │ │ │ │ ├── JeanClaudeScenes.as │ │ │ │ ├── Lethice.as │ │ │ │ ├── LethiceScenes.as │ │ │ │ ├── LethicesKeep.as │ │ │ │ ├── LivingStatue.as │ │ │ │ ├── LivingStatueScenes.as │ │ │ │ ├── MinotaurKing.as │ │ │ │ ├── MinotaurKingScenes.as │ │ │ │ ├── SuccubusGardener.as │ │ │ │ └── SuccubusGardenerScenes.as │ │ │ └── YourCabin.as │ │ ├── Exploration.as │ │ ├── Explore │ │ │ ├── ExploreDebug.as │ │ │ ├── Gargoyle.as │ │ │ ├── Giacomo.as │ │ │ └── Lumi.as │ │ ├── FollowerInteractions.as │ │ ├── Inventory.as │ │ ├── ItemUpgrade.as │ │ ├── Masturbation.as │ │ ├── Monsters │ │ │ ├── AbstractSuccubus.as │ │ │ ├── DemonSoldier.as │ │ │ ├── DemonSoldierScene.as │ │ │ ├── Goblin.as │ │ │ ├── GoblinAssassin.as │ │ │ ├── GoblinQueen.as │ │ │ ├── GoblinScene.as │ │ │ ├── GoblinShaman.as │ │ │ ├── GoblinSpecialScene.as │ │ │ ├── GoblinWarrior.as │ │ │ ├── Imp.as │ │ │ ├── ImpLord.as │ │ │ ├── ImpOverlord.as │ │ │ ├── ImpScene.as │ │ │ ├── ImpWarlord.as │ │ │ ├── Mimic.as │ │ │ ├── MimicScene.as │ │ │ ├── Priscilla.as │ │ │ ├── PriscillaScene.as │ │ │ ├── StareMonster.as │ │ │ ├── Succubus.as │ │ │ ├── SuccubusScene.as │ │ │ └── pregnancies │ │ │ │ ├── PlayerBasiliskPregnancy.as │ │ │ │ ├── PlayerBeePregnancy.as │ │ │ │ ├── PlayerBunnyPregnancy.as │ │ │ │ ├── PlayerCentaurPregnancy.as │ │ │ │ ├── PlayerCockatricePregnancy.as │ │ │ │ ├── PlayerDriderPregnancy.as │ │ │ │ ├── PlayerGooGirlPregnancy.as │ │ │ │ ├── PlayerHellhoundPregnancy.as │ │ │ │ ├── PlayerImpPregnancy.as │ │ │ │ ├── PlayerMinotaurPregnancy.as │ │ │ │ ├── PlayerSandTrapFertilePregnancy.as │ │ │ │ ├── PlayerSandTrapPregnancy.as │ │ │ │ ├── PlayerSatyrPregnancy.as │ │ │ │ ├── PlayerSpiderPregnancy.as │ │ │ │ └── README.md │ │ ├── NPCs │ │ │ ├── Amily.as │ │ │ ├── AmilyScene.as │ │ │ ├── Anemone.as │ │ │ ├── AnemoneScene.as │ │ │ ├── ArianScene.as │ │ │ ├── Ceraph.as │ │ │ ├── CeraphFollowerScene.as │ │ │ ├── CeraphScene.as │ │ │ ├── Clara.as │ │ │ ├── Ember.as │ │ │ ├── EmberScene.as │ │ │ ├── Exgartuan.as │ │ │ ├── GooArmor.as │ │ │ ├── Hel.as │ │ │ ├── HelFollower.as │ │ │ ├── HelScene.as │ │ │ ├── HelSpawnScene.as │ │ │ ├── Helspawn.as │ │ │ ├── Holli.as │ │ │ ├── HolliScene.as │ │ │ ├── Isabella.as │ │ │ ├── IsabellaFollowerScene.as │ │ │ ├── IsabellaScene.as │ │ │ ├── Izma.as │ │ │ ├── IzmaScene.as │ │ │ ├── IzmaelScene.as │ │ │ ├── Jojo.as │ │ │ ├── JojoScene.as │ │ │ ├── JoyScene.as │ │ │ ├── Kiha.as │ │ │ ├── KihaFollower.as │ │ │ ├── KihaScene.as │ │ │ ├── LatexGirl.as │ │ │ ├── Marble.as │ │ │ ├── MarblePurification.as │ │ │ ├── MarbleScene.as │ │ │ ├── MilkWaifu.as │ │ │ ├── NPCAwareContent.as │ │ │ ├── Raphael.as │ │ │ ├── Rathazul.as │ │ │ ├── Sheila.as │ │ │ ├── SheilaScene.as │ │ │ ├── Shouldra.as │ │ │ ├── ShouldraFollower.as │ │ │ ├── ShouldraScene.as │ │ │ ├── Sophie.as │ │ │ ├── SophieBimbo.as │ │ │ ├── SophieFollowerScene.as │ │ │ ├── SophieScene.as │ │ │ ├── UrtaHeatRut.as │ │ │ ├── UrtaPregs.as │ │ │ ├── UrtaScene.as │ │ │ ├── Valeria.as │ │ │ ├── Vapula.as │ │ │ └── pregnancies │ │ │ │ ├── PlayerAmilyPregnancy.as │ │ │ │ ├── PlayerAnemonePregnancy.as │ │ │ │ ├── PlayerBehemothPregnancy.as │ │ │ │ ├── PlayerBenoitPregnancy.as │ │ │ │ ├── PlayerIzmaPregnancy.as │ │ │ │ ├── PlayerMarblePregnancy.as │ │ │ │ ├── PlayerMinervaPregnancy.as │ │ │ │ ├── PlayerMousePregnancy.as │ │ │ │ ├── PlayerOviElixirPregnancy.as │ │ │ │ └── README.md │ │ ├── Places │ │ │ ├── Bazaar.as │ │ │ ├── Bazaar │ │ │ │ ├── BazaarAbstractContent.as │ │ │ │ ├── Benoit.as │ │ │ │ ├── BlackCock.as │ │ │ │ ├── ChillySmith.as │ │ │ │ ├── Cinnabar.as │ │ │ │ ├── FapArena.as │ │ │ │ ├── GretasGarments.as │ │ │ │ ├── Lilium.as │ │ │ │ ├── Roxanne.as │ │ │ │ └── SlipperySqueeze.as │ │ │ ├── BetaZone.as │ │ │ ├── Boat.as │ │ │ ├── Boat │ │ │ │ ├── AbstractBoatContent.as │ │ │ │ ├── Marae.as │ │ │ │ ├── MaraeScene.as │ │ │ │ ├── SharkGirl.as │ │ │ │ └── SharkGirlScene.as │ │ │ ├── Farm.as │ │ │ ├── Farm │ │ │ │ ├── AbstractFarmContent.as │ │ │ │ ├── FarmCorruption.as │ │ │ │ ├── Kelly.as │ │ │ │ ├── Kelt.as │ │ │ │ ├── KeltScene.as │ │ │ │ └── Whitney.as │ │ │ ├── Ingnam.as │ │ │ ├── Ingnam │ │ │ │ ├── IngnamFarm.as │ │ │ │ ├── Thief.as │ │ │ │ └── ThiefScene.as │ │ │ ├── Owca.as │ │ │ ├── Owca │ │ │ │ ├── Farmers.as │ │ │ │ └── LustyDemons.as │ │ │ ├── Prison.as │ │ │ ├── Prison │ │ │ │ ├── BillieScene.as │ │ │ │ ├── EllyScene.as │ │ │ │ ├── PrisonCaptor.as │ │ │ │ ├── PrisonGuard.as │ │ │ │ ├── PrisonLetters.as │ │ │ │ ├── Punishments.as │ │ │ │ ├── Scruffy.as │ │ │ │ ├── ScruffyScene.as │ │ │ │ ├── TrainingFeeding.as │ │ │ │ └── TrainingPet.as │ │ │ ├── TelAdre.as │ │ │ ├── TelAdre │ │ │ │ ├── AuntNancy.as │ │ │ │ ├── BakeryScene.as │ │ │ │ ├── Brooke.as │ │ │ │ ├── CarpentryShop.as │ │ │ │ ├── Cotton.as │ │ │ │ ├── Dominika.as │ │ │ │ ├── Edryn.as │ │ │ │ ├── Frosty.as │ │ │ │ ├── Gym.as │ │ │ │ ├── Heckel.as │ │ │ │ ├── Ifris.as │ │ │ │ ├── Jasun.as │ │ │ │ ├── JewelryShop.as │ │ │ │ ├── Katherine.as │ │ │ │ ├── KatherineEmployment.as │ │ │ │ ├── KatherineThreesome.as │ │ │ │ ├── Library.as │ │ │ │ ├── Loppe.as │ │ │ │ ├── Lottie.as │ │ │ │ ├── Maddie.as │ │ │ │ ├── Niamh.as │ │ │ │ ├── PabloScene.as │ │ │ │ ├── Rubi.as │ │ │ │ ├── Scylla.as │ │ │ │ ├── SexMachine.as │ │ │ │ ├── Shop.as │ │ │ │ ├── TelAdreAbstractContent.as │ │ │ │ ├── UmasShop.as │ │ │ │ ├── VictoriaTailorShop.as │ │ │ │ ├── WeaponShop.as │ │ │ │ ├── YaraPiercingStudio.as │ │ │ │ └── YvonneArmorShop.as │ │ │ └── TownRuins.as │ │ ├── PregnancyProgression.as │ │ ├── Quests │ │ │ ├── UrtaQuest.as │ │ │ └── UrtaQuest │ │ │ │ ├── GoblinBroodmother.as │ │ │ │ ├── MilkySuccubus.as │ │ │ │ ├── MinotaurLord.as │ │ │ │ └── Sirius.as │ │ ├── Readme.md │ │ ├── Seasonal │ │ │ ├── AprilFools.as │ │ │ ├── Fera.as │ │ │ ├── Thanksgiving.as │ │ │ ├── Valentines.as │ │ │ ├── XmasBase.as │ │ │ ├── XmasElf.as │ │ │ ├── XmasJackFrost.as │ │ │ ├── XmasMisc.as │ │ │ └── XmasSnowAngel.as │ │ └── VaginalPregnancy.as │ ├── StatusEffect.as │ ├── StatusEffectType.as │ ├── StatusEffects.as │ ├── StatusEffects │ │ ├── Combat │ │ │ ├── AkbalSpeedDebuff.as │ │ │ ├── AmilyVenomDebuff.as │ │ │ ├── AnemoneVenomDebuff.as │ │ │ ├── BasiliskSlowDebuff.as │ │ │ ├── CalledShotDebuff.as │ │ │ ├── CombatBuff.as │ │ │ ├── CombatInteBuff.as │ │ │ ├── CombatSpeBuff.as │ │ │ ├── CombatStrBuff.as │ │ │ ├── CombatTouBuff.as │ │ │ ├── DriderIncubusVenomDebuff.as │ │ │ ├── GardenerSapSpeedDebuff.as │ │ │ ├── GiantStrLossDebuff.as │ │ │ ├── GnollSpearDebuff.as │ │ │ ├── IceBreathDebuff.as │ │ │ ├── LizanBlowpipeDebuff.as │ │ │ ├── MightBuff.as │ │ │ ├── NagaVenomDebuff.as │ │ │ ├── ParalyzeVenomDebuff.as │ │ │ └── WebDebuff.as │ │ ├── CombatStatusEffect.as │ │ ├── README.md │ │ └── TemporaryBuff.as │ ├── Time.as │ ├── TimeAwareInterface.as │ ├── Vagina.as │ ├── display │ │ ├── AchievementDb.as │ │ ├── AchievementDisplay.as │ │ ├── AchievementPane.as │ │ ├── BindDisplay.as │ │ ├── BindingPane.as │ │ ├── LevelUpPane.as │ │ ├── SettingPane.as │ │ └── SpriteDb.as │ ├── helper │ │ └── StageLocator.as │ ├── internals │ │ ├── ActionScriptRNG.as │ │ ├── ChainedAction.as │ │ ├── ChainedChoice.as │ │ ├── ChainedDrop.as │ │ ├── GuiInput.as │ │ ├── GuiOutput.as │ │ ├── LoggerFactory.as │ │ ├── PregnancyUtils.as │ │ ├── Profiling.as │ │ ├── RandomAction.as │ │ ├── RandomChoice.as │ │ ├── RandomDrop.as │ │ ├── RandomNumberGenerator.as │ │ ├── SaveGameUtils.as │ │ ├── Serializable.as │ │ ├── SerializationUtils.as │ │ ├── Utils.as │ │ ├── WeightedAction.as │ │ ├── WeightedChoice.as │ │ ├── WeightedDrop.as │ │ └── profiling │ │ │ ├── Begin.as │ │ │ └── End.as │ ├── lists │ │ ├── BodyPartLists.as │ │ ├── BreastCup.as │ │ ├── ColorLists.as │ │ ├── FlagLists.as │ │ ├── Gender.as │ │ ├── GenitalLists.as │ │ └── PerkLists.as │ ├── menus │ │ ├── GenderDebug.as │ │ └── Menu.as │ └── room.as ├── coc │ ├── script │ │ └── Eval.as │ ├── view │ │ ├── BitmapDataSprite.as │ │ ├── Block.as │ │ ├── BoundClip.as │ │ ├── CharView.as │ │ ├── CoCButton.as │ │ ├── CoCLoader.as │ │ ├── Color.as │ │ ├── MainView.as │ │ ├── MonsterStatsView.as │ │ ├── StatBar.as │ │ ├── StatsView.as │ │ ├── ToolTipView.as │ │ ├── UIUtils.as │ │ ├── charview │ │ │ ├── CharViewCompiler.as │ │ │ ├── CharViewContext.as │ │ │ ├── CharViewSprite.as │ │ │ ├── EvalPaletteProperty.as │ │ │ ├── IColorNameProvider.as │ │ │ ├── KeyColor.as │ │ │ ├── LayerPart.as │ │ │ ├── Palette.as │ │ │ ├── PaletteProperty.as │ │ │ └── README.md │ │ └── composite │ │ │ ├── CompositeImage.as │ │ │ ├── CompositeLayer.as │ │ │ ├── IKeyColorProvider.as │ │ │ └── SimpleKeyColorProvider.as │ └── xlogic │ │ ├── CallStmt.as │ │ ├── CaseStmt.as │ │ ├── Compiler.as │ │ ├── Declaration.as │ │ ├── ExecContext.as │ │ ├── IfStmt.as │ │ ├── Statement.as │ │ ├── StmtList.as │ │ └── SwitchStmt.as └── com │ ├── README.md │ └── bit101 │ ├── charts │ ├── BarChart.as │ ├── Chart.as │ ├── LineChart.as │ └── PieChart.as │ ├── components │ ├── Accordion.as │ ├── Calendar.as │ ├── CheckBox.as │ ├── ColorChooser.as │ ├── ComboBox.as │ ├── Component.as │ ├── FPSMeter.as │ ├── HBox.as │ ├── HRangeSlider.as │ ├── HScrollBar.as │ ├── HSlider.as │ ├── HUISlider.as │ ├── IndicatorLight.as │ ├── InputText.as │ ├── Knob.as │ ├── Label.as │ ├── List.as │ ├── ListItem.as │ ├── Meter.as │ ├── NumericStepper.as │ ├── Panel.as │ ├── ProgressBar.as │ ├── PushButton.as │ ├── RadioButton.as │ ├── RangeSlider.as │ ├── RotarySelector.as │ ├── ScrollBar.as │ ├── ScrollPane.as │ ├── Slider.as │ ├── Style.as │ ├── Text.as │ ├── TextArea.as │ ├── TextFieldVScroll.as │ ├── UISlider.as │ ├── VBox.as │ ├── VRangeSlider.as │ ├── VScrollBar.as │ ├── VSlider.as │ ├── VUISlider.as │ ├── WheelMenu.as │ └── Window.as │ └── utils │ └── MinimalConfigurator.as ├── devTools ├── AvailableImagesDict.cs ├── AvailableImagesDict.exe ├── PackageApp.bat ├── Run.bat ├── allImages.txt ├── bat │ ├── CreateCertificate.bat │ ├── InstallAirRuntime.bat │ ├── Packager.bat │ ├── SetupApplication.bat │ └── SetupSDK.bat ├── binManage.sh ├── buildSwf.sh ├── ccprofiles │ ├── Debug.xml │ ├── Profiles.txt │ └── Release.xml ├── cert │ ├── CorruptionofChampionsAIR.p12 │ └── Fake.mobileprovision ├── ci │ ├── README.md │ ├── Vagrantfile │ ├── build-test.sh │ ├── dump-report.sh │ ├── unpack-report.sh │ └── update-sonar-version.sh ├── icons │ ├── icon_144.png │ ├── icon_29.png │ ├── icon_512.png │ ├── icon_57.png │ └── icon_72.png ├── insertRevInfo.sh ├── scripts │ ├── Default (Windows).sublime-keymap │ ├── Default.sublime-commands │ ├── Distraction Free.sublime-settings │ ├── Preferences.sublime-settings │ ├── outTextWrap.sublime-macro │ ├── quoteFix.sublime-macro │ └── reg_replace.sublime-settings ├── spred │ ├── config.js │ ├── css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ └── tether.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── spred.css │ ├── spred.html │ ├── spred.js │ ├── spred.ts │ ├── tether.min.js │ ├── tinycolor-min.js │ ├── tsconfig.json │ ├── typings │ │ ├── jquery.d.ts │ │ └── tinycolor2.d.ts │ └── utils.ts └── test │ ├── fla │ └── TestMainView.fla │ └── src │ └── coc │ └── test │ └── TestMainView.as ├── docker-compose.yaml ├── flagRefactor.py ├── img ├── images.xml └── xmlGen.py ├── includes ├── ControlBindings.as ├── debug.as ├── engineCore.as └── eventParser.as ├── lib ├── bin │ └── flexunit │ │ ├── flexUnitTasks-4.2.0-20140410-javadoc.jar │ │ ├── flexUnitTasks-4.2.0-20140410-sources.jar │ │ ├── flexUnitTasks-4.2.0-20140410.jar │ │ ├── flexunit-4.2.0-20140410-as3_4.12.0.swc │ │ ├── flexunit-4.2.0-20140410-flex_4.12.0.swc │ │ ├── flexunit-aircilistener-4.2.0-20140410-4.12.0.swc │ │ ├── flexunit-cilistener-4.2.0-20140410-4.12.0.swc │ │ ├── flexunit-flexcoverlistener-4.2.0-20140410-4.12.0.swc │ │ ├── flexunit-uilistener-4.2.0-20140410-4.12.0.swc │ │ ├── fluint-extensions-4.2.0-20140410-4.12.0.swc │ │ └── hamcrest-as3-flex-1.2.1.swc └── fla │ ├── MainView.fla │ └── MainView.xml ├── permissionedArtists.txt ├── refactorTool.py ├── res ├── achievements │ ├── dungeon_t1.png │ ├── dungeon_t2.png │ ├── dungeon_t3.png │ ├── explore_bog.png │ ├── explore_deepwoods.png │ ├── explore_desert.png │ ├── explore_explorer.png │ ├── explore_forest.png │ ├── explore_glacialrift.png │ ├── explore_highmountain.png │ ├── explore_lake.png │ ├── explore_mountain.png │ ├── explore_plains.png │ ├── explore_swamp.png │ ├── explore_whereami.png │ ├── general_house.png │ ├── level_t0.png │ ├── level_t1.png │ ├── level_t2.png │ ├── level_t3.png │ ├── level_t4.png │ ├── level_t5.png │ ├── level_t6.png │ ├── level_t7.png │ ├── level_t8.png │ ├── placeholder_locked.png │ ├── placeholder_unlocked.png │ ├── population_t1.png │ ├── population_t2.png │ ├── population_t3.png │ ├── population_t4.png │ ├── population_t5.png │ ├── population_t6.png │ ├── population_t7.png │ ├── quest_puremarble.png │ ├── quest_urtalover.png │ ├── story_finalboss.png │ ├── story_maraesavior.png │ ├── story_newcomer.png │ ├── story_revenge.png │ ├── time_t1.png │ ├── time_t2.png │ ├── time_t3.png │ ├── time_t4.png │ ├── time_t5.png │ ├── time_t6.png │ ├── time_t7.png │ ├── time_t8.png │ ├── time_t9.png │ ├── wealth_t1.png │ ├── wealth_t2.png │ └── wealth_t3.png ├── charview │ ├── body.png │ ├── extra.png │ ├── hair.png │ ├── head.png │ ├── lewd.png │ ├── outfit.psd │ ├── tails.png │ └── wings.png ├── model.xml ├── sprites │ ├── aiko.png │ ├── akbal.png │ ├── amarok.png │ ├── amily.png │ ├── amily_defurr.png │ ├── anemone.png │ ├── antguards.png │ ├── arian.png │ ├── basilisk.png │ ├── bee girl.png │ ├── brooke.png │ ├── brooke_nude.png │ ├── carpenter.png │ ├── ceraph.png │ ├── ceraphClothed.png │ ├── ceraphGoblin.png │ ├── cerulean succubus.png │ ├── chameleon.png │ ├── chickenHarpy.png │ ├── chillySmith.png │ ├── christmas elf.png │ ├── cinnabar.png │ ├── clara.png │ ├── clara.psd │ ├── cloaked dominika.png │ ├── club gnoll.png │ ├── corruptedGlade.png │ ├── cotton.png │ ├── cumwitch.png │ ├── dickworms.png │ ├── drider.png │ ├── dryad.png │ ├── easter bunneh.png │ ├── edryn.png │ ├── edryn_preg.png │ ├── ember.png │ ├── erlkingClothed.png │ ├── erlkingNude.png │ ├── exgartuan.png │ ├── factory omnibus.png │ ├── faerie.png │ ├── fenimp.png │ ├── fetish cultist.png │ ├── fetish zealot.png │ ├── gargoyle.png │ ├── ghoul.png │ ├── giacomo.png │ ├── goblin.png │ ├── goblinElder.png │ ├── goblinShaman.png │ ├── goblinWarrior.png │ ├── googirlsprite.png │ ├── green slime.png │ ├── harpy.png │ ├── heckel.png │ ├── heckel_nude.png │ ├── hel-sprite.png │ ├── hel-sprite_BB.png │ ├── hel-sprite_BB_PF.png │ ├── hel-sprite_PF.png │ ├── hellhound.png │ ├── ifris.png │ ├── imp.png │ ├── impMob.png │ ├── impOverlord.png │ ├── impWarlord.png │ ├── incubus mechanic.png │ ├── isabella.png │ ├── ivory_succubus.png │ ├── izma.png │ ├── jasun.png │ ├── jojo.png │ ├── jojoTentacle.png │ ├── joy.png │ ├── katherine-vagrant.png │ ├── kelly.png │ ├── kelly_brst.png │ ├── kelly_brst_preg.png │ ├── kelly_preg.png │ ├── kelt.png │ ├── kida.png │ ├── kiha.png │ ├── kiha_nude.png │ ├── kiha_nude_preg.png │ ├── kiha_preg.png │ ├── kitsune_black.png │ ├── kitsune_blonde.png │ ├── kitsune_red.png │ ├── latexgoogirl.png │ ├── lilium.png │ ├── lottie.png │ ├── lumi.png │ ├── lynette.png │ ├── maddie.png │ ├── marae.png │ ├── marble.png │ ├── marble_cow.png │ ├── markus and lucia.png │ ├── milkgirl.png │ ├── minerva-corrupt.png │ ├── minerva-pure.png │ ├── minerva.png │ ├── minotaur.png │ ├── minotaurSons.png │ ├── mrsCoffee.png │ ├── naga.png │ ├── oasis demons.png │ ├── oswald.png │ ├── pablo.png │ ├── pablo_nude.png │ ├── phoenix.png │ ├── phoenix_nude.png │ ├── phylla.png │ ├── phylla_nude.png │ ├── phylla_preg.png │ ├── poisontail.png │ ├── priscilla.png │ ├── raphael.png │ ├── rathazul.png │ ├── rogar.png │ ├── rubi_hornless.png │ ├── rubi_horns.png │ ├── sandtrap.png │ ├── sandwich.png │ ├── satyr.png │ ├── scylla.png │ ├── scyllaAndBear.png │ ├── sean.png │ ├── sharkgirl.png │ ├── sophie.png │ ├── sophieBimbo.png │ ├── source │ │ ├── antguard.psd │ │ ├── antguards.psd │ │ ├── brooke.psd │ │ ├── carpenter.psd │ │ ├── ceraphClothed.psd │ │ ├── edryn.psd │ │ ├── gargoyle.psd │ │ ├── ghoul.psd │ │ ├── heckel.psd │ │ ├── impMob.psd │ │ ├── joy.psd │ │ ├── kelly.psd │ │ ├── kelt.psd │ │ ├── kiha.psd │ │ ├── latexgoogirl.psd │ │ ├── marble_cow.psd │ │ ├── milkgirl.psd │ │ ├── pablo.psd │ │ ├── phoenix.psd │ │ ├── phylla.psd │ │ ├── raphael.psd │ │ ├── sharkgirl.psd │ │ ├── succubus.psd │ │ ├── valeria.psd │ │ ├── vapula.psd │ │ ├── venus_herm.psd │ │ ├── zetaz.psd │ │ └── zetaz_imp.psd │ ├── spear gnoll.png │ ├── spidergirl.png │ ├── spiderguy.png │ ├── stuckSatyr.png │ ├── succubus secretary.png │ ├── tamani's daughters.png │ ├── tamani.png │ ├── tentacleMonster.png │ ├── uncloaked dominika.png │ ├── urta.png │ ├── urtaDrunk.png │ ├── vagrant cats.png │ ├── vala.png │ ├── valaSlave.png │ ├── valeria.png │ ├── vapula.png │ ├── venus.png │ ├── venus_herm.png │ ├── victoria.png │ ├── weaponsmith.png │ ├── whitney.png │ ├── yamata.png │ ├── yara.png │ ├── yvonne.png │ ├── zetaz.png │ └── zetaz_imp.png ├── sprites8bit │ ├── akbal-old.png │ ├── amarok-old.png │ ├── amily-human-old.png │ ├── amily-old.png │ ├── anemone-old.png │ ├── arian-old.png │ ├── assmole-old.png │ ├── basilisk-old.png │ ├── beegirl-old.png │ ├── bunnygirl-old.png │ ├── ceraph-old.png │ ├── cerulean-succubus-old.png │ ├── chillySmith-old.png │ ├── cotton-old.png │ ├── cumwitch-old.png │ ├── dominika-old.png │ ├── dominika-unmasked-old.png │ ├── drider-old.png │ ├── edryn-old.png │ ├── ember-old.png │ ├── exgartuan-old.png │ ├── faerie-old.png │ ├── fenimp-old.png │ ├── fetish-cultist-old.png │ ├── fetish-zealot-old.png │ ├── giacomo-old.png │ ├── gnoll-old.png │ ├── gnoll-spearthrower-old.png │ ├── goblin-old.png │ ├── goblinShaman-old.png │ ├── goblinWarrior-old.png │ ├── googirl-old.png │ ├── harpy-old.png │ ├── hel-sprite-old.png │ ├── hel-sprite_BB-old.png │ ├── hel-sprite_BB_PF-old.png │ ├── hel-sprite_PF-old.png │ ├── helia-old.png │ ├── hellhound-old.png │ ├── ifris-old.png │ ├── imp-old.png │ ├── impOverlord-old.png │ ├── impWarlord-old.png │ ├── incubus-mechanic-old.png │ ├── isabella-old.png │ ├── izma-old.png │ ├── jasun-old.png │ ├── jojo-old.png │ ├── kelt-old.png │ ├── kida-old.png │ ├── kiha-old.png │ ├── kitsune_black-old.png │ ├── kitsune_blonde-old.png │ ├── kitsune_red-old.png │ ├── lottie-old.png │ ├── lumi-old.png │ ├── lynnette-old.png │ ├── maddie-old.png │ ├── marae-old.png │ ├── marble-old.png │ ├── marcus-and-lucia-old.png │ ├── melinda-old.png │ ├── minerva-corrupt-old.png │ ├── minerva-old.png │ ├── minerva-pure-old.png │ ├── minotaur-old.png │ ├── naga-old.png │ ├── oasis-demons-old.png │ ├── omnibus-overseer-old.png │ ├── oswald-old.png │ ├── phylla-old.png │ ├── priscilla-old.png │ ├── raphael-old.png │ ├── rathazul-old.png │ ├── roxanne-old.png │ ├── sand-witch-old.png │ ├── scylla-old.png │ ├── sean-old.png │ ├── secretarial-succubus-old.png │ ├── sharkgirl-old.png │ ├── shouldra-ghost-old.png │ ├── shouldra-normal-old.png │ ├── slime-old.png │ ├── sophie-old.png │ ├── sophieBimbo-old.png │ ├── spider-morph-f-old.png │ ├── spider-morph-m-old.png │ ├── tamani-old.png │ ├── tamanis-daughters-old.png │ ├── urta-old.png │ ├── vagrant-cats-old.png │ ├── vala-old.png │ ├── valeria-old.png │ ├── victoria-old.png │ ├── weaponsmith-old.png │ ├── whitney-old.png │ ├── worms-old.png │ ├── xmas-elf-old.png │ ├── yara-old.png │ └── yvonne-old.png └── ui │ ├── CoCLogo.png │ ├── Shrewsbury-Titling-Bold_modified.sfd │ ├── Shrewsbury-Titling_Bold.ttf │ ├── Shrewsbury-Titling_Bold_orig.ttf │ ├── StatsBarBottom.png │ ├── arrow-down.png │ ├── arrow-up.png │ ├── background1.jpg │ ├── background2.png │ ├── background3.png │ ├── background4.png │ ├── backgroundKaizo.png │ ├── button0.jpg │ ├── button1.jpg │ ├── button2.jpg │ ├── button3.jpg │ ├── button4.jpg │ ├── button5.jpg │ ├── button6.jpg │ ├── button7.jpg │ ├── button8.jpg │ ├── button9.jpg │ ├── buttonsmall.jpg │ ├── disclaimer-bg.png │ ├── monsterpanel1.png │ ├── monsterpanel2.png │ ├── monsterpanel3.png │ ├── monsterpanel4.png │ ├── pf_ronda_seven.ttf │ ├── pf_ronda_seven_bold.ttf │ ├── scroll_bar_bottom.png │ ├── scroll_bar_mid.png │ ├── scroll_bar_shaft.png │ ├── scroll_bar_top.png │ ├── scroll_down.png │ ├── scroll_up.png │ ├── sidebar1.png │ ├── sidebar2.png │ ├── sidebar3.png │ ├── sidebar4.png │ ├── sidebarKaizo.png │ ├── time-bg.png │ ├── tooltip.png │ └── warning.png ├── sonar-project.properties └── test ├── AllTestsSuite.as ├── ClassesSuite.as ├── TestRunner.mxml └── classes ├── AppearanceTest.as ├── AssTest.as ├── BreastRowTest.as ├── CharCreationTest.as ├── CharSpecialTest.as ├── CoCTest.as ├── CockKnotSupportTest.as ├── CockTest.as ├── CreatureTest.as ├── HelperSuite.as ├── InternalsSuite.as ├── ItemSlotTest.as ├── Items ├── Armors │ └── GownTest.as ├── ArmorsSuite.as ├── ConsumableTest.as ├── Consumables │ ├── KangaFruitTest.as │ └── WhiskerFruitTest.as ├── ConsumablesSuite.as └── MutationsTest.as ├── ItemsSuite.as ├── MenusSuite.as ├── MonsterTest.as ├── PlayerEventsTest.as ├── PlayerEventsVaginaLoosenessRecoveryTest.as ├── PlayerTest.as ├── SavesTest.as ├── Scenes ├── Areas │ ├── Bog │ │ └── PhoukaSceneTest.as │ ├── BogSuite.as │ ├── DeepWoodsTest.as │ ├── Forest │ │ └── FaerieTest.as │ ├── ForestSuite.as │ ├── Mountain │ │ └── InfestedHellhoundSceneTest.as │ ├── MountainSuite.as │ ├── Swamp │ │ └── CorruptedDriderSceneTest.as │ └── SwampSuite.as ├── AreasSuite.as ├── InventoryTest.as ├── NPCs │ ├── IsabellaFollowerSceneTest.as │ ├── IsabellaSceneTest.as │ ├── JojoSceneTest.as │ └── JojoTest.as ├── NPCsSuite.as ├── Places │ ├── Bazaar │ │ ├── BlackCockTest.as │ │ └── RoxanneTest.as │ ├── BazaarSuite.as │ ├── Farm │ │ └── KeltSceneTest.as │ └── FarmSuite.as ├── PlacesSuite.as ├── PregnancyProgressionAnalBirthTest.as ├── PregnancyProgressionTest.as └── PregnancyProgressionVagBirthTest.as ├── ScenesSuite.as ├── VaginaTest.as ├── helper ├── DummyOutput.as ├── DummyOutputTest.as ├── FireButtonEvent.as ├── FireButtonEventTest.as ├── MemoryLogTarget.as ├── MemoryLogTargetTest.as └── StageLocatorTest.as ├── internals ├── ActionScriptRNGTest.as ├── LoggerFactoryTest.as ├── PregnancyUtilsTest.as ├── SaveGameUtilsTest.as ├── SerializationUtilTest.as └── UtilsTest.as └── menus └── GenderDebugTest.as /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "build-dep"] 2 | path = build-dep 3 | url = https://github.com/brrritssocold/CoC-build-dependencies.git -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Corruption-of-Champions -------------------------------------------------------------------------------- /.idea/artifacts/dist.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | $PROJECT_DIR$/dist/ 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/flexCompiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /.idea/libraries/lib.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | CoC 4 | 5 | 6 | 7 | 8 | 9 | com.adobe.flexbuilder.project.flexbuilder 10 | 11 | 12 | 13 | 14 | 15 | com.adobe.flexbuilder.project.actionscriptnature 16 | 17 | 18 | -------------------------------------------------------------------------------- /CoC-AIR.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/CoC-AIR.fla -------------------------------------------------------------------------------- /CoC-STANDALONE.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/CoC-STANDALONE.fla -------------------------------------------------------------------------------- /Corruption-of-Champions-FD-STANDALONE.lxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | false 6 | false 7 | false 8 | true 9 | false 10 | false 11 | 12 | 13 | None 14 | -------------------------------------------------------------------------------- /TestAIR.bat: -------------------------------------------------------------------------------- 1 | "C:\Program Files\Adobe\Adobe Flash CC 2014\AIR13.0\bin\adl.exe" -profile mobileDevice -screensize 800x600:800x600 %cd%\application.xml -------------------------------------------------------------------------------- /artifacts/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/artifacts/.keep -------------------------------------------------------------------------------- /assets/CooperBlackStd.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/assets/CooperBlackStd.otf -------------------------------------------------------------------------------- /assets/HowToBugreport1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/assets/HowToBugreport1.png -------------------------------------------------------------------------------- /assets/HowToBugreport2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/assets/HowToBugreport2.png -------------------------------------------------------------------------------- /assets/HowToBugreport3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/assets/HowToBugreport3.png -------------------------------------------------------------------------------- /assets/Parser Demo - Page 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/assets/Parser Demo - Page 1.png -------------------------------------------------------------------------------- /assets/Parser Demo - Page 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/assets/Parser Demo - Page 2.png -------------------------------------------------------------------------------- /assets/Parser Demo - Page 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/assets/Parser Demo - Page 3.png -------------------------------------------------------------------------------- /assets/Shrewsbury-Titling Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/assets/Shrewsbury-Titling Bold.ttf -------------------------------------------------------------------------------- /assets/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/assets/Thumbs.db -------------------------------------------------------------------------------- /classes/classes/BodyParts/Antennae.as: -------------------------------------------------------------------------------- 1 | package classes.BodyParts 2 | { 3 | /** 4 | * Container class for the players antennae 5 | * @since November 08, 2017 6 | * @author Stadler76 7 | */ 8 | public class Antennae 9 | { 10 | public static const NONE:int = 0; 11 | public static const BEE:int = 2; 12 | public static const COCKATRICE:int = 3; 13 | 14 | public var type:Number = NONE; 15 | 16 | public function restore():void 17 | { 18 | type = NONE; 19 | } 20 | 21 | public function setProps(p:Object):void 22 | { 23 | if (p.hasOwnProperty('type')) type = p.type; 24 | } 25 | 26 | public function setAllProps(p:Object):void 27 | { 28 | restore(); 29 | setProps(p); 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /classes/classes/BodyParts/Gills.as: -------------------------------------------------------------------------------- 1 | package classes.BodyParts 2 | { 3 | /** 4 | * Container class for the players gills 5 | * @since November 07, 2017 6 | * @author Stadler76 7 | */ 8 | public class Gills 9 | { 10 | public static const NONE:int = 0; 11 | public static const ANEMONE:int = 1; 12 | public static const FISH:int = 2; 13 | 14 | public var type:Number = NONE; 15 | 16 | public function restore():void 17 | { 18 | type = NONE; 19 | } 20 | 21 | public function setProps(p:Object):void 22 | { 23 | if (p.hasOwnProperty('type')) type = p.type; 24 | } 25 | 26 | public function setAllProps(p:Object):void 27 | { 28 | restore(); 29 | setProps(p); 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /classes/classes/BodyParts/Hips.as: -------------------------------------------------------------------------------- 1 | package classes.BodyParts 2 | { 3 | /** 4 | * Container class for the players hips 5 | * @since November 10, 2017 6 | * @author Stadler76 7 | */ 8 | public class Hips 9 | { 10 | public static const RATING_BOYISH:int = 0; 11 | public static const RATING_SLENDER:int = 2; 12 | public static const RATING_AVERAGE:int = 4; 13 | public static const RATING_AMPLE:int = 6; 14 | public static const RATING_CURVY:int = 10; 15 | public static const RATING_FERTILE:int = 15; 16 | public static const RATING_INHUMANLY_WIDE:int = 20; 17 | 18 | public var rating:Number = RATING_BOYISH; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /classes/classes/BodyParts/Piercing.as: -------------------------------------------------------------------------------- 1 | package classes.BodyParts 2 | { 3 | /** 4 | * Container class for the piercing constants 5 | * @since November 10, 2017 6 | * @author Stadler76 7 | */ 8 | public class Piercing 9 | { 10 | public static const NONE:int = 0; 11 | public static const STUD:int = 1; 12 | public static const RING:int = 2; 13 | public static const LADDER:int = 3; 14 | public static const HOOP:int = 4; 15 | public static const CHAIN:int = 5; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /classes/classes/GlobalFlags/kGAMECLASS.as: -------------------------------------------------------------------------------- 1 | package classes.GlobalFlags 2 | { 3 | import classes.CoC; 4 | 5 | public var kGAMECLASS:CoC; 6 | } -------------------------------------------------------------------------------- /classes/classes/Items/Armors/ComfortableUnderclothes.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 10.01.14. 3 | */ 4 | package classes.Items.Armors 5 | { 6 | import classes.ItemType; 7 | import classes.Items.Armor; 8 | import classes.Player; 9 | 10 | public final class ComfortableUnderclothes extends Armor { 11 | 12 | public function ComfortableUnderclothes() { 13 | super("c.under", "c.under", "comfortable underclothes", "comfortable underclothes", 0, 0, "comfortable underclothes", "Light"); 14 | } 15 | 16 | override public function playerRemove():Armor { 17 | return null; //Player never picks up their underclothes 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /classes/classes/Items/Armors/LeatherArmorSegments.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 18.01.14. 3 | */ 4 | package classes.Items.Armors 5 | { 6 | import classes.ItemType; 7 | import classes.Items.Armor; 8 | import classes.Player; 9 | 10 | public class LeatherArmorSegments extends Armor { 11 | 12 | public function LeatherArmorSegments() { 13 | super("UrtaLta", "UrtaLta", "leather armor segments", "leather armor segments", 5, 76, null, "Light", true); 14 | } 15 | override public function removeText():void { 16 | outputText("You have your old set of " + game.armors.LEATHRA.longName + " left over. "); 17 | } 18 | 19 | override public function playerRemove():Armor { 20 | super.playerRemove(); 21 | return game.armors.LEATHRA; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /classes/classes/Items/Armors/Nothing.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Armors 2 | { 3 | import classes.ItemType; 4 | import classes.Items.Armor; 5 | import classes.Player; 6 | 7 | public final class Nothing extends Armor { 8 | 9 | public function Nothing() { 10 | super("nothing", "nothing", "nothing", "nothing", 0, 0, "nothing", "Light"); 11 | } 12 | 13 | override public function playerRemove():Armor { 14 | return null; //Player never picks up their underclothes 15 | } 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /classes/classes/Items/Consumables/CumBread.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Consumables 2 | { 3 | import classes.Items.Consumable; 4 | import classes.Items.ConsumableLib; 5 | 6 | public class CumBread extends Consumable 7 | { 8 | 9 | public function CumBread() { 10 | super("C.Bread","C.Bread", "a bowl of cum with bread pieces floating in it", ConsumableLib.DEFAULT_VALUE, "A bowl of cum with pieces of bread floating in it. Eating this would take the edge off your hunger but damage your dignity."); 11 | } 12 | 13 | override public function canUse():Boolean { 14 | return true; 15 | } 16 | 17 | override public function useItem():Boolean { 18 | game.prison.prisonItemBread(true, true); 19 | return true; 20 | } 21 | 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /classes/classes/Items/Consumables/HardBiscuits.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Consumables 2 | { 3 | import classes.Items.Consumable; 4 | 5 | /** 6 | * Polly wants a cracker? 7 | */ 8 | public class HardBiscuits extends Consumable 9 | { 10 | private static const ITEM_VALUE:int = 5; 11 | 12 | public function HardBiscuits() 13 | { 14 | super("H.Bisct", "H.Biscuits", "a pack of hard biscuits", ITEM_VALUE, "These biscuits are tasteless, but they can stay edible for an exceedingly long time."); 15 | } 16 | 17 | override public function useItem():Boolean 18 | { 19 | outputText("You eat the flavorless biscuits. It satisfies your hunger a bit, but not much else."); 20 | player.refillHunger(15); 21 | 22 | return false; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /classes/classes/Items/Consumables/OvipositionElixir.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 18.01.14. 3 | */ 4 | package classes.Items.Consumables 5 | { 6 | public class OvipositionElixir extends CustomOviElixir { 7 | 8 | public function OvipositionElixir() { 9 | super("OviElix", "Ovi Elixir", "a hexagonal crystal bottle tagged with an image of an egg", 30, "This hexagonal crystal bottle is filled with a strange green fluid. A tag with a picture of an egg is tied to the neck of the bottle, indicating it is somehow connected to egg-laying."); 10 | } 11 | 12 | 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /classes/classes/Items/Consumables/PrisonBread.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Consumables 2 | { 3 | import classes.Items.Consumable; 4 | import classes.Items.ConsumableLib; 5 | 6 | public class PrisonBread extends Consumable 7 | { 8 | 9 | public function PrisonBread() { 10 | super("P.Bread", "P.Bread", "a stale loaf of prison bread", ConsumableLib.DEFAULT_VALUE, "An impossibly hard loaf of stale bread. Despite its age, still quite nutritious."); 11 | } 12 | 13 | override public function canUse():Boolean { 14 | return true; 15 | } 16 | 17 | override public function useItem():Boolean { 18 | game.prison.prisonItemBread(false); 19 | return true; 20 | } 21 | 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /classes/classes/Items/Jewelries/Nothing.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Jewelries 2 | { 3 | import classes.ItemType; 4 | import classes.Items.Jewelry; 5 | import classes.Player; 6 | 7 | public class Nothing extends Jewelry 8 | { 9 | public function Nothing() 10 | { 11 | super("nojewel", "nojewel", "nothing", "nothing", 0, 0, 0, "no jewelry", "ring"); 12 | } 13 | 14 | override public function playerRemove():Jewelry { 15 | return null; //There is nothing! 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /classes/classes/Items/MiscItemLib.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 10.01.14. 3 | */ 4 | package classes.Items 5 | { 6 | import classes.BaseContent; 7 | 8 | public final class MiscItemLib extends BaseContent 9 | { 10 | public function MiscItemLib() 11 | { 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /classes/classes/Items/Shields/GreatShield.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Shields 2 | { 3 | import classes.Items.Shield; 4 | 5 | public class GreatShield extends Shield 6 | { 7 | public function GreatShield(tier:int) 8 | { 9 | var ids:Array = ["GreatSh", "GrtShl1", "GrtShl2"]; 10 | var eqptNames:Array = ["greatshield", "fine greatshield", "masterwork greatshield"]; 11 | var longNames:Array = ["a greatshield", "a fine greatshield", "a masterwork greatshield"]; 12 | this.weightCategory = Shield.WEIGHT_MEDIUM; 13 | this.tier = tier; 14 | super(ids[tier], "GreatShld", eqptNames[tier], longNames[tier], 10, 300, "A large, rectangular metal shield. It's a bit heavy."); 15 | } 16 | 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /classes/classes/Items/Shields/KiteShield.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Shields 2 | { 3 | import classes.Items.Shield; 4 | 5 | public class KiteShield extends Shield 6 | { 7 | public function KiteShield(tier:int) 8 | { 9 | var ids:Array = ["Kite Sh", "KiteSh1", "KiteSh2"]; 10 | var eqptNames:Array = ["kiteshield", "fine kiteshield", "masterwork kiteshield"]; 11 | var longNames:Array = ["a kiteshield", "a fine kiteshield", "a masterwork kiteshield"]; 12 | this.weightCategory = Shield.WEIGHT_MEDIUM; 13 | this.tier = tier; 14 | super(ids[tier], "KiteShld", eqptNames[tier], longNames[tier], 10, 300, "A teardrop-shaped kiteshield made of durable wood."); 15 | } 16 | 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /classes/classes/Items/Shields/Nothing.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Shields 2 | { 3 | import classes.ItemType; 4 | import classes.Items.Shield; 5 | import classes.Player; 6 | 7 | public class Nothing extends Shield 8 | { 9 | public function Nothing() 10 | { 11 | this.weightCategory = Shield.WEIGHT_LIGHT; 12 | super("noshild", "noshield", "nothing", "nothing", 0, 0, "no shield", "shield"); 13 | } 14 | 15 | override public function playerRemove():Shield { 16 | return null; //There is nothing! 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /classes/classes/Items/Shields/WoodenShield.as: -------------------------------------------------------------------------------- 1 | /** 2 | * ... 3 | * @author Melchi ... 4 | */ 5 | package classes.Items.Shields 6 | { 7 | import classes.GlobalFlags.kFLAGS; 8 | import classes.GlobalFlags.kGAMECLASS; 9 | import classes.Items.Shield; 10 | import classes.Player; 11 | 12 | public class WoodenShield extends Shield 13 | { 14 | 15 | public function WoodenShield() 16 | { 17 | this.weightCategory = Shield.WEIGHT_LIGHT; 18 | super("WoodShl", "WoodShld", "wood shield", "a wooden shield", 6, 10, "A crude wooden shield. It doesn't look very sturdy"); 19 | } 20 | 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /classes/classes/Items/Undergarments/ComfortableUnderclothes.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Undergarments 2 | { 3 | import classes.Items.Undergarment; 4 | 5 | public final class ComfortableUnderclothes extends Undergarment 6 | { 7 | 8 | public function ComfortableUnderclothes() { 9 | super("c.under", "c.under", "comfortable underclothes", "comfortable underclothes", 1, 6, "A pair of comfortable undergarment. \n\nType: Undergarments"); 10 | } 11 | 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /classes/classes/Items/Undergarments/Nothing.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Undergarments 2 | { 3 | import classes.Items.Undergarment; 4 | 5 | public class Nothing extends Undergarment 6 | { 7 | public function Nothing() { 8 | super("nounder", "nounder", "nothing", "nothing", -1, 0, "nothing", "light"); 9 | } 10 | 11 | override public function playerRemove():Undergarment { 12 | return null; //Player never picks up their underclothes 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /classes/classes/Items/Weapons/BrokenBeautifulSword.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Weapons 2 | { 3 | import classes.Items.Weapon; 4 | 5 | public class BrokenBeautifulSword extends Weapon 6 | { 7 | 8 | public function BrokenBeautifulSword() 9 | { 10 | this.weightCategory = Weapon.WEIGHT_LIGHT; 11 | this.tier = 0; 12 | super("B.BSwrd", "B.B Sword", "broken beautiful sword", "a broken beautiful sword", "slash", 10, 500, "This sword was once a prime example of craftsmanship, now broken and no longer shining. The still-intact pommel and guard are heavily decorated in gold and brass. Some craftsman clearly poured his heart and soul into this blade. There might still be hope for this sword."); 13 | } 14 | 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /classes/classes/Items/Weapons/BrokenScarredBlade.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Weapons 2 | { 3 | import classes.Items.Weapon; 4 | 5 | public class BrokenScarredBlade extends Weapon 6 | { 7 | 8 | public function BrokenScarredBlade() 9 | { 10 | this.weightCategory = Weapon.WEIGHT_LIGHT; 11 | this.tier = 0; 12 | super("B.ScarB", "B.ScarBlade", "broken scarred blade", "a broken scarred blade", "slash", 12, 1000, "This saber, made from lethicite-imbued metal, seems to no longer seek flesh; whatever demonic properties in this weapon is gone now but it's still an effective weapon."); 13 | } 14 | 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /classes/classes/Items/Weapons/Crossbow.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Weapons 2 | { 3 | import classes.Items.Weapon; 4 | 5 | public class Crossbow extends Weapon 6 | { 7 | public function Crossbow(tier:int) 8 | { 9 | var ids:Array = ["Crossbw", "Crsbow1", "Crsbow2"]; 10 | var eqptNames:Array = ["crossbow", "fine crossbow", "masterwork crossbow"]; 11 | var longNames:Array = ["a crossbow", "a fine crossbow", "a masterwork crossbow"]; 12 | this.weightCategory = Weapon.WEIGHT_MEDIUM; 13 | this.tier = tier; 14 | super(ids[tier], "Crossbow", eqptNames[tier], longNames[tier], "shot", 11, 200, "This weapon fires bolts at your enemies with the pull of a lever. Speed has factor in damage rather than Strength.", Weapon.PERK_RANGED); 15 | } 16 | 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /classes/classes/Items/Weapons/Fists.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 09.01.14. 3 | */ 4 | package classes.Items.Weapons 5 | { 6 | import classes.ItemType; 7 | import classes.Items.Weapon; 8 | import classes.Player; 9 | 10 | public class Fists extends Weapon { 11 | 12 | public function Fists() { 13 | this.weightCategory = Weapon.WEIGHT_LIGHT; 14 | super("Fists ", "Fists", "fists", "fists \n\nType: Weapon (Unarmed) \nAttack: 0 \nBase value: N/A", "punch", 0); 15 | } 16 | 17 | override public function useText():void {} //No text for equipping fists 18 | 19 | override public function playerRemove():Weapon { 20 | return null; 21 | } 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /classes/classes/Items/Weapons/KihasAxe.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Weapons 2 | { 3 | import classes.Items.Weapon; 4 | 5 | public class KihasAxe extends Weapon 6 | { 7 | 8 | public function KihasAxe() 9 | { 10 | this.weightCategory = Weapon.WEIGHT_HEAVY; 11 | super("KihaAxe", "Greataxe", "fiery double-bladed axe", "a fiery double-bladed axe", "fiery cleave", 20, 1000, "This large, double-bladed axe matches Kiha's axe. It's constantly flaming.", Weapon.PERK_LARGE); 12 | } 13 | 14 | } 15 | 16 | } -------------------------------------------------------------------------------- /classes/classes/Items/Weapons/LethicesWhip.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Weapons 2 | { 3 | import classes.Items.Weapon; 4 | 5 | public class LethicesWhip extends Weapon 6 | { 7 | 8 | public function LethicesWhip() 9 | { 10 | this.weightCategory = Weapon.WEIGHT_LIGHT; 11 | super("L. Whip", "L. Whip", "flaming whip", "a flaming whip once belonged to Lethice", "whip-crack", 16, 2000, "This whip once belonged to Lethice who was defeated at your hands. It gives off flames when you crack this whip."); 12 | } 13 | 14 | } 15 | 16 | } -------------------------------------------------------------------------------- /classes/classes/Items/Weapons/RidingCrop.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Weapons 2 | { 3 | import classes.Items.Weapon; 4 | 5 | public class RidingCrop extends Weapon 6 | { 7 | public function RidingCrop(tier:int) 8 | { 9 | var ids:Array = ["RidingC", "Riding1", "Riding2"]; 10 | var eqptNames:Array = ["riding crop", "fine riding crop", "masterwork riding crop"]; 11 | var longNames:Array = ["a riding crop", "a fine riding crop", "a masterwork riding crop"]; 12 | this.weightCategory = Weapon.WEIGHT_LIGHT; 13 | this.tier = tier; 14 | super(ids[tier], "RidingC", eqptNames[tier], longNames[tier], "whip-crack", 5, 50, "This riding crop appears to be made of black leather, and could be quite a painful (or exciting) weapon.", ""); 15 | } 16 | 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /classes/classes/Items/Weapons/Whip.as: -------------------------------------------------------------------------------- 1 | package classes.Items.Weapons 2 | { 3 | import classes.Items.Weapon; 4 | 5 | public class Whip extends Weapon 6 | { 7 | public function Whip(tier:int) 8 | { 9 | var ids:Array = ["Whip ", "Whip 1", "Whip 2"]; 10 | var eqptNames:Array = ["coiled whip", "fine coiled whip", "masterwork coiled whip"]; 11 | var longNames:Array = ["a coiled whip", "a fine coiled whip", "a masterwork coiled whip"]; 12 | this.weightCategory = Weapon.WEIGHT_LIGHT; 13 | this.tier = tier; 14 | super(ids[tier], "Whip", eqptNames[tier], longNames[tier], "whip-crack", 5, 500, "A coiled length of leather designed to lash your foes into submission. There's a chance the bondage inclined might enjoy it!", ""); 15 | } 16 | 17 | } 18 | 19 | } -------------------------------------------------------------------------------- /classes/classes/KeyItem.as: -------------------------------------------------------------------------------- 1 | package classes 2 | { 3 | public class KeyItem extends Object 4 | { 5 | //constructor 6 | public function KeyItem() 7 | { 8 | } 9 | 10 | //data 11 | public var keyName:String = ""; 12 | //v1-v4 for storing extra stuff. 13 | public var value1:Number = 0; 14 | public var value2:Number = 0; 15 | public var value3:Number = 0; 16 | public var value4:Number = 0; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /classes/classes/Perks/AscensionFortunePerk.as: -------------------------------------------------------------------------------- 1 | package classes.Perks 2 | { 3 | import classes.Perk; 4 | import classes.PerkType; 5 | import classes.GlobalFlags.kGAMECLASS; 6 | 7 | public class AscensionFortunePerk extends PerkType 8 | { 9 | 10 | override public function desc(params:Perk = null):String 11 | { 12 | return "(Rank: " + params.value1 + ") Increases gems gained in battles by " + params.value1 * 10 + "%."; 13 | } 14 | 15 | public function AscensionFortunePerk() 16 | { 17 | super("Ascension: Fortune", "Ascension: Fortune", "", "Increases gems gains by 10% per level."); 18 | } 19 | 20 | override public function keepOnAscension(respec:Boolean = false):Boolean 21 | { 22 | return true; 23 | } 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /classes/classes/Perks/CleansingPalmPerk.as: -------------------------------------------------------------------------------- 1 | package classes.Perks 2 | { 3 | import classes.Perk; 4 | import classes.PerkType; 5 | import classes.GlobalFlags.kGAMECLASS; 6 | 7 | public class CleansingPalmPerk extends PerkType 8 | { 9 | 10 | override public function desc(params:Perk = null):String 11 | { 12 | if (!player.isPureEnough(10)) return "DISABLED - Corruption too high!"; 13 | else return super.desc(params); 14 | } 15 | 16 | public function CleansingPalmPerk() 17 | { 18 | super("Cleansing Palm", "Cleansing Palm", "A ranged fighting technique of Jojo’s order, allows you to blast your enemies with waves of pure spiritual energy, weakening them and hurting the corrupt."); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /classes/classes/Perks/ControlledBreathPerk.as: -------------------------------------------------------------------------------- 1 | package classes.Perks 2 | { 3 | import classes.Perk; 4 | import classes.PerkType; 5 | import classes.GlobalFlags.kGAMECLASS; 6 | 7 | public class ControlledBreathPerk extends PerkType 8 | { 9 | 10 | override public function desc(params:Perk = null):String 11 | { 12 | if (!player.isPureEnough(30)) return "DISABLED - Corruption too high!"; 13 | else return super.desc(params); 14 | } 15 | 16 | public function ControlledBreathPerk() 17 | { 18 | super("Controlled Breath", "Controlled Breath", "Jojo’s training allows you to recover more quickly. Increases rate of fatigue regeneration by 10%"); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /classes/classes/Perks/ElvenBountyPerk.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 27.01.14. 3 | */ 4 | package classes.Perks 5 | { 6 | import classes.Perk; 7 | import classes.PerkType; 8 | 9 | public class ElvenBountyPerk extends PerkType 10 | { 11 | 12 | override public function desc(params:Perk = null):String 13 | { 14 | return "Increases fertility by " + params.value2 + "% and cum production by " + params.value1 + "mLs."; 15 | } 16 | 17 | public function ElvenBountyPerk() 18 | { 19 | super("Elven Bounty", "Elven Bounty", "After your encounter with an elf, her magic has left you with increased fertility and virility.", null, true); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /classes/classes/Perks/EnlightenedPerk.as: -------------------------------------------------------------------------------- 1 | package classes.Perks 2 | { 3 | import classes.Perk; 4 | import classes.PerkType; 5 | import classes.GlobalFlags.kGAMECLASS; 6 | 7 | public class EnlightenedPerk extends PerkType 8 | { 9 | 10 | override public function desc(params:Perk = null):String 11 | { 12 | if (!player.isPureEnough(10)) return "DISABLED - Corruption too high!"; 13 | else return super.desc(params); 14 | } 15 | 16 | public function EnlightenedPerk() 17 | { 18 | super("Enlightened", "Enlightened", "Jojo’s tutelage has given you a master’s focus and you can feel the universe in all its glory spread out before you. You’ve finally surpassed your teacher."); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /classes/classes/Perks/MilkMaidPerk.as: -------------------------------------------------------------------------------- 1 | package classes.Perks 2 | { 3 | import classes.Perk; 4 | import classes.PerkType; 5 | import classes.GlobalFlags.kGAMECLASS; 6 | 7 | public class MilkMaidPerk extends PerkType 8 | { 9 | 10 | override public function desc(params:Perk = null):String 11 | { 12 | return "(Rank: " + params.value1 + "/10) Increases milk production by " + (200 + (params.value1 * 100)) + "mL."; 13 | } 14 | 15 | public function MilkMaidPerk() 16 | { 17 | super("Milk Maid", "Milk Maid", "Increases milk production by ---mL. Allows you to lactate perpetually."); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /classes/classes/Perks/PentUpPerk.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 27.01.14. 3 | */ 4 | package classes.Perks 5 | { 6 | import classes.Perk; 7 | import classes.PerkType; 8 | 9 | public class PentUpPerk extends PerkType 10 | { 11 | 12 | override public function desc(params:Perk = null):String 13 | { 14 | return "Increases minimum lust by " + Math.round(params.value1) + " and makes you more vulnerable to seduction."; 15 | } 16 | 17 | public function PentUpPerk() 18 | { 19 | super("Pent Up","Pent Up", "Increases minimum lust and makes you more vulnerable to seduction"); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /classes/classes/Perks/PiercedCrimstonePerk.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 27.01.14. 3 | */ 4 | package classes.Perks 5 | { 6 | import classes.Perk; 7 | import classes.PerkType; 8 | 9 | public class PiercedCrimstonePerk extends PerkType 10 | { 11 | 12 | override public function desc(params:Perk = null):String 13 | { 14 | return "Increases minimum lust by " + Math.round(params.value1) + "."; 15 | } 16 | 17 | public function PiercedCrimstonePerk() 18 | { 19 | super("Pierced: Crimstone", "Pierced: Crimstone", 20 | "You've been pierced with Crimstone and your lust seems to stay a bit higher than before."); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /classes/classes/Perks/PiercedFertitePerk.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 27.01.14. 3 | */ 4 | package classes.Perks 5 | { 6 | import classes.Perk; 7 | import classes.PerkType; 8 | 9 | public class PiercedFertitePerk extends PerkType 10 | { 11 | 12 | override public function desc(params:Perk = null):String 13 | { 14 | return "Increases cum production by " + Math.round(2*params.value1) + "% and fertility by " + Math.round(params.value1) + "."; 15 | } 16 | 17 | public function PiercedFertitePerk() 18 | { 19 | super("Pierced: Fertite", "Pierced: Fertite", 20 | "You've been pierced with Fertite and any male or female organs have become more fertile."); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /classes/classes/Perks/PiercedIcestonePerk.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 27.01.14. 3 | */ 4 | package classes.Perks 5 | { 6 | import classes.Perk; 7 | import classes.PerkType; 8 | 9 | public class PiercedIcestonePerk extends PerkType 10 | { 11 | 12 | override public function desc(params:Perk = null):String 13 | { 14 | return "Reduces minimum lust by " + Math.round(params.value1) + "."; 15 | } 16 | 17 | public function PiercedIcestonePerk() 18 | { 19 | super("Pierced: Icestone", "Pierced: Icestone", 20 | "You've been pierced with Icestone and your lust seems to stay a bit lower than before."); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /classes/classes/Perks/SpellcastingAffinityPerk.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 27.01.14. 3 | */ 4 | package classes.Perks 5 | { 6 | import classes.Perk; 7 | import classes.PerkType; 8 | 9 | public class SpellcastingAffinityPerk extends PerkType 10 | { 11 | 12 | override public function desc(params:Perk = null):String 13 | { 14 | return "Reduces spell costs by " + params.value1 + "%."; 15 | } 16 | 17 | public function SpellcastingAffinityPerk() 18 | { 19 | super("Spellcasting Affinity","Spellcasting Affinity", "Reduces spell costs."); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /classes/classes/Perks/WizardsEndurancePerk.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 27.01.14. 3 | */ 4 | package classes.Perks 5 | { 6 | import classes.Perk; 7 | import classes.PerkType; 8 | 9 | public class WizardsEndurancePerk extends PerkType 10 | { 11 | 12 | override public function desc(params:Perk = null):String 13 | { 14 | return "Reduces fatigue cost of spells by " + params.value1 + "%."; 15 | } 16 | 17 | public function WizardsEndurancePerk() 18 | { 19 | super("Wizard's Endurance", "Wizard's Endurance", 20 | "Your spellcasting equipment makes it harder for spell-casting to fatigue you!"); 21 | } 22 | 23 | override public function keepOnAscension(respec:Boolean = false):Boolean 24 | { 25 | return true; 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /classes/classes/Perks/WizardsFocusPerk.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 27.01.14. 3 | */ 4 | package classes.Perks 5 | { 6 | import classes.Perk; 7 | import classes.PerkType; 8 | 9 | public class WizardsFocusPerk extends PerkType 10 | { 11 | 12 | override public function desc(params:Perk = null):String 13 | { 14 | return "Increases your spell effect modifier by " + params.value1 * 100 + "%."; 15 | } 16 | 17 | public function WizardsFocusPerk() 18 | { 19 | super("Wizard's Focus", "Wizard's Focus", 20 | "Your wizard's staff grants you additional focus, reducing the use of fatigue for spells."); 21 | } 22 | 23 | override public function keepOnAscension(respec:Boolean = false):Boolean 24 | { 25 | return true; 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /classes/classes/Scenes/API/ComplexEncounter.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 26.03.2017. 3 | */ 4 | package classes.Scenes.API { 5 | public class ComplexEncounter extends GroupEncounter { 6 | private var _chance:*; 7 | 8 | /** 9 | * @param chance Number, Boolean, or function() returning Number|Boolean, 10 | * @param components Array of Encounter-s 11 | */ 12 | public function ComplexEncounter(name:String,chance:*,components:Array) { 13 | super(name,components); 14 | this._chance = chance; 15 | } 16 | 17 | override public function encounterChance():Number { 18 | return Encounters.convertChance(_chance); 19 | } 20 | 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /classes/classes/Scenes/API/IExplorable.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.API 2 | { 3 | /** 4 | * Interface for explorable areas. 5 | */ 6 | public interface IExplorable 7 | { 8 | /** 9 | * Check if the area has already been discovered. 10 | * @return true if the area has been discovered. 11 | */ 12 | function isDiscovered():Boolean; 13 | /** 14 | * Discover the area, making it available for future exploration. 15 | */ 16 | function discover():void; 17 | /** 18 | * Explore the area, possibly triggering encounters. 19 | */ 20 | function explore():void; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /classes/classes/Scenes/AnalPregnancy.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes 2 | { 3 | import classes.Creature; 4 | /** 5 | * Interface for anal pregnancy. 6 | * The class must at least implement a birth scene. 7 | */ 8 | public interface AnalPregnancy 9 | { 10 | /** 11 | * Progresses a active pregnancy. Updates should eventually lead to birth. 12 | * @return true if the display output needs to be updated. 13 | */ 14 | function updateAnalPregnancy(): Boolean; 15 | 16 | /** 17 | * Give birth. Should outout a birth scene. 18 | */ 19 | function analBirth(): void; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /classes/classes/Scenes/Areas/HighMountains/WingedCockatrice.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Areas.HighMountains 2 | { 3 | import classes.BodyParts.Wings; 4 | /** 5 | * ... 6 | * @author Stadler76 7 | */ 8 | public class WingedCockatrice extends Cockatrice 9 | { 10 | public function WingedCockatrice() 11 | { 12 | super(); 13 | wings.type = Wings.FEATHERED_LARGE; 14 | spe += 10; 15 | this.imageName = "cockatricewithwings"; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /classes/classes/Scenes/Areas/Lake/AbstractLakeContent.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 06.01.14. 3 | */ 4 | package classes.Scenes.Areas.Lake 5 | { 6 | import classes.*; 7 | import classes.GlobalFlags.kGAMECLASS; 8 | import classes.Scenes.Areas.Lake; 9 | 10 | public class AbstractLakeContent extends BaseContent 11 | { 12 | protected function get lake():Lake{ 13 | return kGAMECLASS.lake; 14 | } 15 | public function AbstractLakeContent() 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /classes/classes/Scenes/Areas/Swamp/LizanRogue.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Areas.Swamp 2 | { 3 | /** 4 | * ... 5 | * @author Kitteh6660 6 | */ 7 | public class LizanRogue 8 | { 9 | 10 | public function LizanRogue() 11 | { 12 | 13 | } 14 | 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /classes/classes/Scenes/Areas/Swamp/LizanRogueScene.as: -------------------------------------------------------------------------------- 1 | //Male lizan rogue 2 | package classes.Scenes.Areas.Swamp 3 | { 4 | import classes.*; 5 | import classes.GlobalFlags.kFLAGS; 6 | import classes.GlobalFlags.kGAMECLASS; 7 | 8 | public class LizanRogueScene 9 | { 10 | 11 | public function LizanRogueScene() 12 | { 13 | 14 | } 15 | 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /classes/classes/Scenes/Dungeons/DragonCity/EmberInteractions.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Dungeons.DragonCity 2 | { 3 | import classes.BaseContent; 4 | import classes.Scenes.Dungeons.DungeonAbstractContent; 5 | 6 | public class EmberInteractions extends BaseContent 7 | { 8 | 9 | public function EmberInteractions() {} 10 | 11 | } 12 | 13 | } -------------------------------------------------------------------------------- /classes/classes/Scenes/Dungeons/DungeonAbstractContent.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Dungeons { 2 | import classes.*; 3 | import classes.GlobalFlags.kGAMECLASS; 4 | import classes.Scenes.Dungeons.DungeonCore; 5 | 6 | /** 7 | * ... 8 | * @author Kitteh6660 9 | */ 10 | public class DungeonAbstractContent extends BaseContent { 11 | protected function get dungeons():DungeonCore { 12 | return kGAMECLASS.dungeons; 13 | } 14 | public function DungeonAbstractContent() {} 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /classes/classes/Scenes/Dungeons/FetishChurch.as: -------------------------------------------------------------------------------- 1 | //Side Dungeon: Church of the Fetish (Stub) 2 | package classes.Scenes.Dungeons 3 | { 4 | /** 5 | * ... 6 | * @author ... 7 | */ 8 | public class FetishChurch extends DungeonAbstractContent 9 | { 10 | public function FetishChurch() {} 11 | 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /classes/classes/Scenes/Dungeons/HellhoundComplex/HellhoundMaster.as: -------------------------------------------------------------------------------- 1 | //Stub file for now 2 | package classes.Scenes.Dungeons.HellhoundComplex 3 | { 4 | /** 5 | * ... 6 | * @author ... 7 | */ 8 | public class HellhoundMaster 9 | { 10 | 11 | public function HellhoundMaster() 12 | { 13 | 14 | } 15 | 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /classes/classes/Scenes/Monsters/StareMonster.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Monsters 2 | { 3 | import classes.*; 4 | import classes.StatusEffects.Combat.BasiliskSlowDebuff; 5 | 6 | /** 7 | * Class to categorize monsters with the stare ability 8 | * @since 27.02.2018 9 | * @author Stadler76 10 | */ 11 | public class StareMonster extends Monster 12 | { 13 | public static function speedReduce(player:Player, amount:Number = 0):void 14 | { 15 | var bse:BasiliskSlowDebuff = player.createOrFindStatusEffect(StatusEffects.BasiliskSlow) as BasiliskSlowDebuff; 16 | bse.applyEffect(amount); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /classes/classes/Scenes/Monsters/pregnancies/README.md: -------------------------------------------------------------------------------- 1 | # Monster related pregnancies 2 | 3 | Contains pregnancy content for Monsters. 4 | Files are named in the following pattern: `MotherFatherPregnancy.as` -------------------------------------------------------------------------------- /classes/classes/Scenes/NPCs/pregnancies/README.md: -------------------------------------------------------------------------------- 1 | # NPC related pregnancies 2 | 3 | Contains pregnancy content for NPCs. 4 | Files are named in the following pattern: `MotherFatherPregnancy.as` 5 | -------------------------------------------------------------------------------- /classes/classes/Scenes/Places/Bazaar/BazaarAbstractContent.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 06.01.14. 3 | */ 4 | package classes.Scenes.Places.Bazaar 5 | { 6 | import classes.*; 7 | import classes.GlobalFlags.kGAMECLASS; 8 | import classes.Scenes.Places.Bazaar; 9 | 10 | public class BazaarAbstractContent extends BaseContent 11 | { 12 | protected function get bazaar():Bazaar { 13 | return kGAMECLASS.bazaar; 14 | } 15 | 16 | public function BazaarAbstractContent() {} 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /classes/classes/Scenes/Places/Boat/AbstractBoatContent.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 06.01.14. 3 | */ 4 | package classes.Scenes.Places.Boat 5 | { 6 | import classes.*; 7 | import classes.GlobalFlags.kGAMECLASS; 8 | import classes.Scenes.Places.Boat; 9 | 10 | public class AbstractBoatContent extends BaseContent 11 | { 12 | protected function get boat():Boat { 13 | return kGAMECLASS.boat; 14 | } 15 | public function AbstractBoatContent() 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /classes/classes/Scenes/Places/Farm/AbstractFarmContent.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 08.01.14. 3 | */ 4 | package classes.Scenes.Places.Farm 5 | { 6 | import classes.*; 7 | import classes.GlobalFlags.kGAMECLASS; 8 | import classes.Scenes.Places.Farm; 9 | 10 | public class AbstractFarmContent extends BaseContent 11 | { 12 | public function AbstractFarmContent() 13 | { 14 | } 15 | protected function get farm():Farm { 16 | return kGAMECLASS.farm; 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /classes/classes/Scenes/Places/Farm/Whitney.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Places.Farm 2 | { 3 | import classes.Monster; 4 | /** 5 | * ... 6 | * @author ... 7 | */ 8 | public class Whitney extends Monster 9 | { 10 | 11 | public function Whitney() 12 | { 13 | 14 | } 15 | 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /classes/classes/Scenes/Places/TelAdre/TelAdreAbstractContent.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 05.01.14. 3 | */ 4 | package classes.Scenes.Places.TelAdre 5 | { 6 | import classes.*; 7 | import classes.GlobalFlags.kGAMECLASS; 8 | import classes.Scenes.Places.TelAdre; 9 | 10 | use namespace kGAMECLASS; 11 | 12 | internal class TelAdreAbstractContent extends BaseContent 13 | { 14 | protected function get telAdre():TelAdre { 15 | return kGAMECLASS.telAdre; 16 | } 17 | public function TelAdreAbstractContent() 18 | { 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /classes/classes/Scenes/Seasonal/XmasBase.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Seasonal 2 | { 3 | import classes.*; 4 | import classes.GlobalFlags.*; 5 | 6 | public class XmasBase extends BaseContent 7 | { 8 | public var xmasElf:XmasElf = new XmasElf(); 9 | public var xmasMisc:XmasMisc = new XmasMisc(); 10 | public var jackFrost:XmasJackFrost = new XmasJackFrost(); 11 | public var snowAngel:XmasSnowAngel = new XmasSnowAngel(); 12 | 13 | public function XmasBase() {} 14 | 15 | public function isItHolidays():Boolean { 16 | return (date.date >= 25 && date.month == 11 || flags[kFLAGS.ITS_EVERY_DAY] > 0 || player.findPerk(PerkLib.AChristmasCarol) >= 0); 17 | } 18 | 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /classes/classes/Scenes/VaginalPregnancy.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes 2 | { 3 | import classes.Creature; 4 | /** 5 | * Interface for vaginal pregnancy. 6 | * The class must at least implement a birth scene. 7 | */ 8 | public interface VaginalPregnancy 9 | { 10 | /** 11 | * Progresses a active pregnancy. Updates should eventually lead to birth. 12 | * @return true if the display output needs to be updated. 13 | */ 14 | function updateVaginalPregnancy(): Boolean; 15 | 16 | /** 17 | * Give birth. Should outout a birth scene and clean up the pregnancy. 18 | */ 19 | function vaginalBirth(): void; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/AkbalSpeedDebuff.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 22.08.2017. 3 | */ 4 | package classes.StatusEffects.Combat { 5 | import classes.StatusEffectType; 6 | 7 | public class AkbalSpeedDebuff extends CombatBuff { 8 | public static const TYPE:StatusEffectType = register("Akbal Speed",AkbalSpeedDebuff); 9 | public function AkbalSpeedDebuff() { 10 | super(TYPE,'spe'); 11 | } 12 | 13 | 14 | override protected function apply(firstTime:Boolean):void { 15 | buffHost('spe', -host.spe / 5); 16 | } 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/AmilyVenomDebuff.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 24.08.2017. 3 | */ 4 | package classes.StatusEffects.Combat { 5 | import classes.StatusEffectType; 6 | 7 | public class AmilyVenomDebuff extends CombatBuff { 8 | public static const TYPE:StatusEffectType = register("Amily Venom",AmilyVenomDebuff); 9 | public function AmilyVenomDebuff() { 10 | super(TYPE,'str','spe'); 11 | } 12 | 13 | override protected function apply(firstTime:Boolean):void { 14 | buffHost('str', -2 - rand(5),'spe', -2 - rand(5)); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/AnemoneVenomDebuff.as: -------------------------------------------------------------------------------- 1 | package classes.StatusEffects.Combat { 2 | import classes.StatusEffectType; 3 | 4 | public class AnemoneVenomDebuff extends CombatBuff { 5 | public static const TYPE:StatusEffectType = register("Anemone Venom",AnemoneVenomDebuff); 6 | public function AnemoneVenomDebuff() { 7 | super(TYPE,'str','spe'); 8 | } 9 | 10 | public function applyEffect(str:Number):void { 11 | host.takeLustDamage((2 * str), true); 12 | buffHost('str', -str,'spe',-str); 13 | } 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/BasiliskSlowDebuff.as: -------------------------------------------------------------------------------- 1 | package classes.StatusEffects.Combat { 2 | import classes.StatusEffectType; 3 | 4 | public class BasiliskSlowDebuff extends CombatBuff { 5 | public static const TYPE:StatusEffectType = register("BasiliskSlow",BasiliskSlowDebuff); 6 | public function BasiliskSlowDebuff() { 7 | super(TYPE,'spe'); 8 | } 9 | 10 | public function applyEffect(amount:Number):void { 11 | buffHost('spe', -amount, 'scale', false, 'max', false); 12 | } 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/CalledShotDebuff.as: -------------------------------------------------------------------------------- 1 | package classes.StatusEffects.Combat { 2 | import classes.StatusEffectType; 3 | import classes.StatusEffects.CombatStatusEffect; 4 | 5 | public class CalledShotDebuff extends CombatBuff { 6 | 7 | public static const TYPE:StatusEffectType = register("Called Shot",CalledShotDebuff); 8 | public function CalledShotDebuff() { 9 | super(TYPE,'spe'); 10 | } 11 | 12 | 13 | override protected function apply(firstTime:Boolean):void { 14 | buffHost('spe', -20 - rand(5)); 15 | } 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/CombatBuff.as: -------------------------------------------------------------------------------- 1 | package classes.StatusEffects.Combat { 2 | import classes.StatusEffectType; 3 | import classes.StatusEffects.TemporaryBuff; 4 | 5 | public class CombatBuff extends TemporaryBuff{ 6 | public function CombatBuff(stype:StatusEffectType, stat1:String, stat2:String ='', stat3:String ='', stat4:String ='') { 7 | super(stype, stat1, stat2, stat3, stat4); 8 | } 9 | 10 | override public function onCombatEnd():void { 11 | super.onCombatEnd(); 12 | restore(); 13 | remove(); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/CombatInteBuff.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 23.09.2017. 3 | */ 4 | package classes.StatusEffects.Combat { 5 | import classes.StatusEffectType; 6 | 7 | public class CombatInteBuff extends CombatBuff { 8 | public static const TYPE:StatusEffectType = register("Combat Inte Buff", CombatInteBuff); 9 | public function CombatInteBuff() { 10 | super(TYPE, "inte"); 11 | } 12 | public function applyEffect(inteBuff:Number):Number { 13 | return buffHost("inte", inteBuff).inte; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/CombatSpeBuff.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 23.09.2017. 3 | */ 4 | package classes.StatusEffects.Combat { 5 | import classes.StatusEffectType; 6 | 7 | public class CombatSpeBuff extends CombatBuff { 8 | public static const TYPE:StatusEffectType = register("Combat Spe Buff", CombatSpeBuff); 9 | public function CombatSpeBuff() { 10 | super(TYPE, "spe"); 11 | } 12 | public function applyEffect(speBuff:Number):Number { 13 | return buffHost("spe", speBuff).spe; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/CombatStrBuff.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 23.09.2017. 3 | */ 4 | package classes.StatusEffects.Combat { 5 | import classes.StatusEffectType; 6 | 7 | public class CombatStrBuff extends CombatBuff { 8 | public static const TYPE:StatusEffectType = register("Combat Str Buff", CombatStrBuff); 9 | public function CombatStrBuff() { 10 | super(TYPE, "str"); 11 | } 12 | public function applyEffect(strBuff:Number):Number { 13 | return buffHost("str", strBuff).str; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/CombatTouBuff.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 23.09.2017. 3 | */ 4 | package classes.StatusEffects.Combat { 5 | import classes.StatusEffectType; 6 | 7 | public class CombatTouBuff extends CombatBuff { 8 | public static const TYPE:StatusEffectType = register("Combat Tou Buff", CombatTouBuff); 9 | public function CombatTouBuff() { 10 | super(TYPE, "tou"); 11 | } 12 | public function applyEffect(touBuff:Number):Number { 13 | return buffHost("tou", touBuff).tou; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/GardenerSapSpeedDebuff.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 01.09.2017. 3 | */ 4 | package classes.StatusEffects.Combat { 5 | import classes.StatusEffectType; 6 | 7 | public class GardenerSapSpeedDebuff extends CombatBuff { 8 | public static const TYPE:StatusEffectType = register("Sap Speed",GardenerSapSpeedDebuff); 9 | public function GardenerSapSpeedDebuff() { 10 | super(TYPE,'spe'); 11 | } 12 | 13 | override protected function apply(firstTime:Boolean):void { 14 | buffHost('spe',-host.spe*0.2); 15 | } 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/GiantStrLossDebuff.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 01.09.2017. 3 | */ 4 | package classes.StatusEffects.Combat { 5 | import classes.StatusEffectType; 6 | 7 | public class GiantStrLossDebuff extends CombatBuff { 8 | public static const TYPE:StatusEffectType = register("GiantStrLoss",GiantStrLossDebuff); 9 | public function GiantStrLossDebuff() { 10 | super(TYPE,'str'); 11 | } 12 | 13 | public function applyEffect(magnitude:Number):void { 14 | buffHost('str', -magnitude); 15 | } 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/GnollSpearDebuff.as: -------------------------------------------------------------------------------- 1 | package classes.StatusEffects.Combat { 2 | import classes.StatusEffectType; 3 | 4 | public class GnollSpearDebuff extends CombatBuff { 5 | public static const TYPE:StatusEffectType = register("Gnoll Spear",GnollSpearDebuff); 6 | public function GnollSpearDebuff() { 7 | super(TYPE,'spe'); 8 | } 9 | 10 | 11 | override protected function apply(firstTime:Boolean):void { 12 | buffHost('spe', -15); 13 | } 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/IceBreathDebuff.as: -------------------------------------------------------------------------------- 1 | package classes.StatusEffects.Combat 2 | { 3 | import classes.StatusEffectType; 4 | 5 | public class IceBreathDebuff extends CombatBuff 6 | { 7 | public static const TYPE:StatusEffectType = register("Ice Breath", IceBreathDebuff); 8 | public function IceBreathDebuff() { 9 | super(TYPE, 'spe'); 10 | } 11 | 12 | override protected function apply(firstTime:Boolean):void { 13 | buffHost('spe', -25); 14 | } 15 | } 16 | 17 | } -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/MightBuff.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 24.08.2017. 3 | */ 4 | package classes.StatusEffects.Combat { 5 | import classes.StatusEffectType; 6 | 7 | public class MightBuff extends CombatBuff { 8 | public static const TYPE:StatusEffectType = register("Might",MightBuff); 9 | public function MightBuff() { 10 | super(TYPE,'str','tou'); 11 | } 12 | 13 | override protected function apply(firstTime:Boolean):void { 14 | var buff:Number = 10 * host.spellMod(); 15 | if (buff > 100) buff = 100; 16 | buffHost('str',buff,'tou',buff,'scale',false,'max',false); 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/ParalyzeVenomDebuff.as: -------------------------------------------------------------------------------- 1 | package classes.StatusEffects.Combat { 2 | import classes.StatusEffectType; 3 | 4 | public class ParalyzeVenomDebuff extends CombatBuff { 5 | 6 | public static const TYPE:StatusEffectType = register("paralyze venom",ParalyzeVenomDebuff); 7 | public function ParalyzeVenomDebuff() { 8 | super(TYPE,'str','spe'); 9 | } 10 | 11 | 12 | override public function onRemove():void { 13 | if (playerHost) { 14 | game.outputText("You feel quicker and stronger as the paralyzation venom in your veins wears off.\n\n"); 15 | } 16 | } 17 | 18 | override protected function apply(firstTime:Boolean):void { 19 | buffHost('str',firstTime?-2:-3,'spe',firstTime?-2:-3); 20 | } 21 | 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /classes/classes/StatusEffects/Combat/WebDebuff.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 22.08.2017. 3 | */ 4 | package classes.StatusEffects.Combat { 5 | import classes.StatusEffectType; 6 | 7 | public class WebDebuff extends CombatBuff{ 8 | public static const TYPE:StatusEffectType = register("Web",WebDebuff); 9 | public function WebDebuff() { 10 | super(TYPE, 'spe'); 11 | } 12 | 13 | override protected function apply(firstTime:Boolean):void { 14 | buffHost('spe', -5); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /classes/classes/StatusEffects/CombatStatusEffect.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 31.01.14. 3 | */ 4 | package classes.StatusEffects 5 | { 6 | import classes.StatusEffect; 7 | import classes.StatusEffectType; 8 | 9 | public class CombatStatusEffect extends StatusEffect 10 | { 11 | 12 | public function CombatStatusEffect(stype:StatusEffectType) 13 | { 14 | super(stype); 15 | } 16 | 17 | override public function onCombatEnd():void { 18 | remove(); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /classes/classes/Time.as: -------------------------------------------------------------------------------- 1 | package classes 2 | { 3 | public class Time 4 | { 5 | private var _days:Number; 6 | private var _hours:Number; 7 | private var _minutes:Number; 8 | 9 | public function get days():Number { return _days; } 10 | public function set days(value:Number):void { _days = value; } 11 | 12 | public function get hours():Number { return _hours; } 13 | public function set hours(value:Number):void { _hours = value; } 14 | 15 | public function get minutes():Number { return _minutes; } 16 | public function set minutes(value:Number):void { _minutes = value; } 17 | 18 | public function get totalTime():Number { return (this._days * 24 + this._hours); } 19 | } 20 | } -------------------------------------------------------------------------------- /classes/classes/helper/StageLocator.as: -------------------------------------------------------------------------------- 1 | package classes.helper { 2 | import flash.display.Stage; 3 | 4 | /** 5 | * Helper class to deal with the CoC class GUI dependency. 6 | * 7 | * Source: 8 | * https://forums.adobe.com/message/4235833#4235833 9 | */ 10 | public class StageLocator { 11 | //public static var instance:StageLocator; 12 | private static var _stage:Stage; 13 | 14 | public function StageLocator ($stage:Stage) { 15 | //instance = this; 16 | _stage = $stage; 17 | } 18 | public static function get stage():Stage { return _stage; } 19 | } 20 | } -------------------------------------------------------------------------------- /classes/classes/internals/GuiInput.as: -------------------------------------------------------------------------------- 1 | package classes.internals 2 | { 3 | import coc.view.CoCButton; 4 | /** 5 | * Using 'Extract interface' to use GUI functions without having to drag the CoC class, and with it, 6 | * the entire fucking game, into a unit test. 7 | */ 8 | public interface GuiInput 9 | { 10 | function addButton(pos:int, text:String = "", func1:Function = null, arg1:* = -9000, arg2:* = -9000, arg3:* = -9000, toolTipText:String = "", toolTipHeader:String = ""):CoCButton; 11 | 12 | function menu():void; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /classes/classes/internals/GuiOutput.as: -------------------------------------------------------------------------------- 1 | package classes.internals 2 | { 3 | 4 | /** 5 | * Minimal interface to allow output to the GUI. This interface is used to break the dependencies that would 6 | * get dragged in when using the Output class directly. 7 | */ 8 | public interface GuiOutput 9 | { 10 | function text(text:String):GuiOutput; 11 | 12 | function flush():void; 13 | 14 | function header(headLine:String):GuiOutput; 15 | 16 | function clear(hideMenuButtons:Boolean = false):GuiOutput; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /classes/classes/internals/RandomAction.as: -------------------------------------------------------------------------------- 1 | package classes.internals 2 | { 3 | /** 4 | * Interface for performing random actions (function/method calls) derived from RandomDrop by aimozg 5 | * @since May 7, 2017 6 | * @author Stadler76 7 | */ 8 | public interface RandomAction 9 | { 10 | function exec():void; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /classes/classes/internals/RandomChoice.as: -------------------------------------------------------------------------------- 1 | package classes.internals 2 | { 3 | /** 4 | * Interface for returning random choices derived from RandomDrop by aimozg 5 | * @since March 7, 2018 6 | * @author Stadler76 7 | */ 8 | public interface RandomChoice 9 | { 10 | function choose():*; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /classes/classes/internals/RandomDrop.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 11.01.14. 3 | */ 4 | package classes.internals 5 | { 6 | public interface RandomDrop 7 | { 8 | function roll():*; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /classes/classes/internals/RandomNumberGenerator.as: -------------------------------------------------------------------------------- 1 | package classes.internals 2 | { 3 | 4 | /** 5 | * Interface that provides methods for getting random numbers. 6 | */ 7 | public interface RandomNumberGenerator 8 | { 9 | /** 10 | * Returns a number that is between 0 and max - 1 inclusive. 11 | * @param max the upper limit for the random number 12 | * @return a value between 0 and max - 1 13 | */ 14 | function random(max:int):int; 15 | 16 | /** 17 | * Returns a number that is between 0 and max inclusive. 18 | * @param max the upper limit for the random number 19 | * @return a value between 0 and max inclusive 20 | */ 21 | function randomCorrected(max:int):int; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /classes/classes/internals/profiling/Begin.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 13.05.2017. 3 | */ 4 | package classes.internals.profiling { 5 | import classes.internals.Profiling; 6 | 7 | public function Begin(classname:String, methodName:String, ...rest:Array):void { 8 | Profiling.Begin.apply(null,[classname,methodName].concat(rest)); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /classes/classes/internals/profiling/End.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by aimozg on 13.05.2017. 3 | */ 4 | package classes.internals.profiling { 5 | import classes.internals.Profiling; 6 | 7 | public function End(classname:String, methodName:String):void { 8 | Profiling.End(classname,methodName); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /classes/classes/lists/Gender.as: -------------------------------------------------------------------------------- 1 | package classes.lists 2 | { 3 | /** 4 | * Container class for the gender constants 5 | * @since November 08, 2017 6 | * @author Stadler76 7 | */ 8 | public class Gender 9 | { 10 | public static const NONE:int = 0; 11 | public static const MALE:int = 1; 12 | public static const FEMALE:int = 2; 13 | public static const HERM:int = 3; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /classes/classes/lists/GenitalLists.as: -------------------------------------------------------------------------------- 1 | package classes.lists 2 | { 3 | import classes.CockTypesEnum; 4 | /** 5 | * Class for Genital lists 6 | * @since September 29, 2018 7 | * @author Stadler76 8 | */ 9 | public class GenitalLists 10 | { 11 | /** 12 | * Contains cock types that support knots. 13 | * This is used for the supportsKnot method and with that to decide if a knot is reset when the cock type changes 14 | * e.g. player.cocks[0].cockType = CockTypesEnum.HORSE 15 | */ 16 | public static const KNOTTED_COCKS:Vector. = new [ 17 | CockTypesEnum.DOG, 18 | CockTypesEnum.FOX, 19 | CockTypesEnum.WOLF, 20 | CockTypesEnum.DRAGON, 21 | CockTypesEnum.DISPLACER 22 | ]; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /classes/classes/menus/Menu.as: -------------------------------------------------------------------------------- 1 | package classes.menus 2 | { 3 | /** 4 | * Interface for GUI menus, which are a collection of buttons 5 | */ 6 | public interface Menu { 7 | /** 8 | * This function is used as the entry point into the menu. 9 | * It is usually responsible for drawing the menu. 10 | */ 11 | function enter(): void; 12 | 13 | /** 14 | * Returns the text that should be displayed in a button that will 15 | * call this menu. 16 | * 17 | * @return the button text for this menu 18 | */ 19 | function getButtonText(): String; 20 | 21 | /** 22 | * Returns the hint text for the Button that calls this menu. 23 | * 24 | * @return the button hint for this menu. 25 | */ 26 | function getButtonHint(): String; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /classes/coc/view/BoundClip.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 02.12.2017. 3 | */ 4 | package coc.view { 5 | 6 | import flash.display.MovieClip; 7 | import flash.display.Sprite; 8 | 9 | public class BoundClip extends MovieClip { 10 | 11 | private static var _nextContent:Sprite; 12 | 13 | public function BoundClip() { 14 | if (nextContent != null) { 15 | addChild(nextContent); 16 | } 17 | } 18 | 19 | public static function set nextContent(newContent:Sprite):void { _nextContent = newContent; } 20 | public static function get nextContent():Sprite { return _nextContent; } 21 | 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /classes/coc/view/charview/CharViewSprite.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 06.08.2017. 3 | */ 4 | package coc.view.charview { 5 | import flash.display.BitmapData; 6 | 7 | public class CharViewSprite { 8 | public var bmp:BitmapData; 9 | public var dx:int; 10 | public var dy:int; 11 | public function CharViewSprite( 12 | bmp:BitmapData, 13 | dx:int, 14 | dy:int 15 | ) { 16 | this.bmp = bmp; 17 | this.dx = dx; 18 | this.dy = dy; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /classes/coc/view/charview/EvalPaletteProperty.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 28.07.2017. 3 | */ 4 | package coc.view.charview { 5 | import coc.script.Eval; 6 | 7 | public class EvalPaletteProperty extends PaletteProperty{ 8 | private var srcfn:Eval; 9 | 10 | public function EvalPaletteProperty(palette:Palette, name:String, defaultt:uint, lookupNames:/*String*/Array, expr:String) { 11 | super(palette,name,defaultt,lookupNames); 12 | this.srcfn = Eval.compile(expr); 13 | } 14 | 15 | public override function colorName(layerName:String, src:Object):* { 16 | return srcfn.call(src); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /classes/coc/view/charview/IColorNameProvider.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 06.01.2019. 3 | */ 4 | package coc.view.charview { 5 | public interface IColorNameProvider { 6 | function getKeyColor(layerName:String,keyColorName:String):String; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /classes/coc/view/composite/IKeyColorProvider.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 06.01.2019. 3 | */ 4 | package coc.view.composite { 5 | public interface IKeyColorProvider { 6 | /** 7 | * @return uint color24 -> uint color24 8 | */ 9 | function allKeyColorsFor(layerName:String):Object; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /classes/coc/view/composite/SimpleKeyColorProvider.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 06.01.2019. 3 | */ 4 | package coc.view.composite { 5 | public class SimpleKeyColorProvider implements IKeyColorProvider { 6 | private var _keyColors:Object; 7 | 8 | /** 9 | * @param keyColors uint color24 -> uint color24 10 | */ 11 | public function SimpleKeyColorProvider(keyColors:Object) { 12 | _keyColors = keyColors; 13 | } 14 | public function allKeyColorsFor(layerName:String):Object { 15 | return _keyColors; 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /classes/coc/xlogic/CallStmt.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 06.07.2018. 3 | */ 4 | package coc.xlogic { 5 | public class CallStmt extends Statement{ 6 | private var fn:Function; 7 | private var passContext:Boolean; 8 | public function CallStmt(fn:Function, passContext:Boolean =false) { 9 | this.fn = fn; 10 | this.passContext = passContext; 11 | } 12 | 13 | override public function execute(context:ExecContext):void { 14 | if (passContext) fn(context); 15 | else fn(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /classes/coc/xlogic/Declaration.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 12.06.2018. 3 | */ 4 | package coc.xlogic { 5 | public class Declaration extends Statement{ 6 | public function Declaration() { 7 | } 8 | 9 | override public function execute(context:ExecContext):void { 10 | // do nothing, but also don't throw exception 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /classes/coc/xlogic/Statement.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 27.08.2017. 3 | */ 4 | package coc.xlogic { 5 | import classes.CoC_Settings; 6 | 7 | public class Statement { 8 | public function Statement() { 9 | } 10 | public function execute(context:ExecContext):void{ 11 | CoC_Settings.errorAMC("coc.xlogic.Statement","execute",""+this); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /classes/coc/xlogic/StmtList.as: -------------------------------------------------------------------------------- 1 | /** 2 | * Coded by aimozg on 27.08.2017. 3 | */ 4 | package coc.xlogic { 5 | public class StmtList extends Statement{ 6 | private var _stmts:/*Statement*/Array = []; 7 | 8 | public function get stmts():Array { 9 | return _stmts; 10 | } 11 | public function StmtList(init:/*Statement*/Array = null) { 12 | if (init!=null) _stmts.push.apply(_stmts,init); 13 | } 14 | 15 | override public function execute(context:ExecContext):void { 16 | context.executeAll(_stmts); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /devTools/AvailableImagesDict.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/AvailableImagesDict.exe -------------------------------------------------------------------------------- /devTools/bat/InstallAirRuntime.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | set PAUSE_ERRORS=1 3 | call SetupSDK.bat 4 | 5 | :: AIR runtime installer 6 | set AIR_INSTALLER=%FLEX_SDK%\runtimes\air\android\device\runtime.apk 7 | 8 | 9 | :: Install 10 | adb devices 11 | echo. 12 | echo Installing AIR runtime on current device: 13 | echo %AIR_INSTALLER% 14 | echo. 15 | adb install "%AIR_INSTALLER%" 16 | echo. 17 | if errorlevel 1 goto failed 18 | goto end 19 | 20 | :failed 21 | echo Troubleshooting: 22 | echo - one, and only one, Android device should be connected 23 | echo - verify 'SetupSDK.bat' 24 | echo. 25 | goto end 26 | 27 | :end 28 | pause -------------------------------------------------------------------------------- /devTools/ccprofiles/Profiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/ccprofiles/Profiles.txt -------------------------------------------------------------------------------- /devTools/cert/CorruptionofChampionsAIR.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/cert/CorruptionofChampionsAIR.p12 -------------------------------------------------------------------------------- /devTools/cert/Fake.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/cert/Fake.mobileprovision -------------------------------------------------------------------------------- /devTools/ci/README.md: -------------------------------------------------------------------------------- 1 | This directory contains scripts for CI builds 2 | 3 | ## Vagrant 4 | 5 | If you have vagrant and virtualbox installed, you can test the scripts in a local VM. 6 | This setup is intended to troubleshoot issues with package installations and configuration. 7 | The VM can be used to test code if you do not wish to install the tools on the host, expect a performance penalty for running in a VM. 8 | 9 | Use `vagrant up` to start a vm, `vagrant destroy -f` to stop and delete it. 10 | Enter the VM with `vagrant ssh` press `ctrl-d` or type `exit` to leave the VM session. 11 | 12 | 13 | You can run the script with `/vagrant/build-test.sh` 14 | -------------------------------------------------------------------------------- /devTools/ci/unpack-report.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | # create the directory where report will be extracted into 4 | mkdir -p ci-report 5 | 6 | # decode and decompress the report 7 | cat $1 | base64 -di | tar xzC ci-report 8 | -------------------------------------------------------------------------------- /devTools/ci/update-sonar-version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Update the version in 'sonar-project.properties' so sonar can track the different releases. 4 | 5 | # shamelessly lifted from buildSwf.sh 6 | COC_VERSION=$(gawk 'match($0, /^[\s\t]+ver = \"(.+)\";/, n) { print n[1] }' < classes/classes/CoC.as) 7 | sed -i s/COC_VERSION/$COC_VERSION/ sonar-project.properties 8 | 9 | -------------------------------------------------------------------------------- /devTools/icons/icon_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/icons/icon_144.png -------------------------------------------------------------------------------- /devTools/icons/icon_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/icons/icon_29.png -------------------------------------------------------------------------------- /devTools/icons/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/icons/icon_512.png -------------------------------------------------------------------------------- /devTools/icons/icon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/icons/icon_57.png -------------------------------------------------------------------------------- /devTools/icons/icon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/icons/icon_72.png -------------------------------------------------------------------------------- /devTools/scripts/Default (Windows).sublime-keymap: -------------------------------------------------------------------------------- 1 | [ 2 | { "keys": ["ctrl+shift+."], "command": "run_macro_file", "args": {"file": "Packages/Macros/outTextWrap.sublime-macro"} }, 3 | { "keys": ["ctrl+shift+,"], "command": "run_macro_file", "args": {"file": "Packages/Macros/quoteFix.sublime-macro"} } 4 | ] 5 | -------------------------------------------------------------------------------- /devTools/scripts/Default.sublime-commands: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "caption": "Fix Fancyquotes: Remove and replace fancyquotes with less fancy equivilents", 4 | "command": "reg_replace", 5 | "args": { "replacements": ["fix_fancyquotes_open", "fix_fancyquotes_close", "fix_fancyquotes_apos"]} 6 | } 7 | ] -------------------------------------------------------------------------------- /devTools/scripts/Distraction Free.sublime-settings: -------------------------------------------------------------------------------- 1 | { 2 | "line_numbers": true, 3 | "gutter": true, 4 | "draw_centered": true, 5 | "wrap_width": 270, 6 | "word_wrap": true, 7 | "scroll_past_end": true 8 | } -------------------------------------------------------------------------------- /devTools/scripts/Preferences.sublime-settings: -------------------------------------------------------------------------------- 1 | { 2 | "draw_white_space": "all", 3 | "font_size": 10, 4 | "ignored_packages": 5 | [ 6 | "Vintage" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /devTools/scripts/outTextWrap.sublime-macro: -------------------------------------------------------------------------------- 1 | [ 2 | 3 | { 4 | "args": 5 | { 6 | "extend": false, 7 | "to": "bol" 8 | }, 9 | "command": "move_to" 10 | }, 11 | { 12 | "args": 13 | { 14 | "characters": "outputText(\"" 15 | }, 16 | "command": "insert" 17 | }, 18 | { 19 | "args": 20 | { 21 | "extend": false, 22 | "to": "hardeol" 23 | }, 24 | "command": "move_to" 25 | }, 26 | { 27 | "args": 28 | { 29 | "characters": "\\n\\n\");" 30 | }, 31 | "command": "insert" 32 | } 33 | ] 34 | -------------------------------------------------------------------------------- /devTools/scripts/quoteFix.sublime-macro: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "args": 4 | { 5 | "extend": false, 6 | "to": "bol" 7 | }, 8 | "command": "move_to" 9 | }, 10 | { 11 | "args": 12 | { 13 | "extend": true, 14 | "to": "hardeol" 15 | }, 16 | "command": "move_to" 17 | }, 18 | { 19 | "args": 20 | { 21 | "replacements": 22 | [ 23 | "fix_fancyquotes_open", 24 | "fix_fancyquotes_close" 25 | ] 26 | }, 27 | "command": "reg_replace" 28 | } 29 | ] 30 | -------------------------------------------------------------------------------- /devTools/spred/config.js: -------------------------------------------------------------------------------- 1 | window['spred_basedir'] = '../../'; 2 | -------------------------------------------------------------------------------- /devTools/spred/css/tether.min.css: -------------------------------------------------------------------------------- 1 | .tether-element,.tether-element *,.tether-element :after,.tether-element :before,.tether-element:after,.tether-element:before{box-sizing:border-box}.tether-element{position:absolute;display:none}.tether-element.tether-open{display:block} -------------------------------------------------------------------------------- /devTools/spred/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/spred/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /devTools/spred/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/spred/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /devTools/spred/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/spred/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /devTools/spred/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/spred/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /devTools/spred/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/spred/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /devTools/spred/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es2016", 4 | "outFile": "spred.js" 5 | } 6 | } -------------------------------------------------------------------------------- /devTools/test/fla/TestMainView.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/devTools/test/fla/TestMainView.fla -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | build: 3 | image: coc-ant 4 | build: 5 | context: . 6 | restart: no 7 | volumes: 8 | - ./artifacts:/build/artifacts 9 | -------------------------------------------------------------------------------- /lib/bin/flexunit/flexUnitTasks-4.2.0-20140410-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/flexUnitTasks-4.2.0-20140410-javadoc.jar -------------------------------------------------------------------------------- /lib/bin/flexunit/flexUnitTasks-4.2.0-20140410-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/flexUnitTasks-4.2.0-20140410-sources.jar -------------------------------------------------------------------------------- /lib/bin/flexunit/flexUnitTasks-4.2.0-20140410.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/flexUnitTasks-4.2.0-20140410.jar -------------------------------------------------------------------------------- /lib/bin/flexunit/flexunit-4.2.0-20140410-as3_4.12.0.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/flexunit-4.2.0-20140410-as3_4.12.0.swc -------------------------------------------------------------------------------- /lib/bin/flexunit/flexunit-4.2.0-20140410-flex_4.12.0.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/flexunit-4.2.0-20140410-flex_4.12.0.swc -------------------------------------------------------------------------------- /lib/bin/flexunit/flexunit-aircilistener-4.2.0-20140410-4.12.0.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/flexunit-aircilistener-4.2.0-20140410-4.12.0.swc -------------------------------------------------------------------------------- /lib/bin/flexunit/flexunit-cilistener-4.2.0-20140410-4.12.0.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/flexunit-cilistener-4.2.0-20140410-4.12.0.swc -------------------------------------------------------------------------------- /lib/bin/flexunit/flexunit-flexcoverlistener-4.2.0-20140410-4.12.0.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/flexunit-flexcoverlistener-4.2.0-20140410-4.12.0.swc -------------------------------------------------------------------------------- /lib/bin/flexunit/flexunit-uilistener-4.2.0-20140410-4.12.0.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/flexunit-uilistener-4.2.0-20140410-4.12.0.swc -------------------------------------------------------------------------------- /lib/bin/flexunit/fluint-extensions-4.2.0-20140410-4.12.0.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/fluint-extensions-4.2.0-20140410-4.12.0.swc -------------------------------------------------------------------------------- /lib/bin/flexunit/hamcrest-as3-flex-1.2.1.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/bin/flexunit/hamcrest-as3-flex-1.2.1.swc -------------------------------------------------------------------------------- /lib/fla/MainView.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/fla/MainView.fla -------------------------------------------------------------------------------- /lib/fla/MainView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/lib/fla/MainView.xml -------------------------------------------------------------------------------- /permissionedArtists.txt: -------------------------------------------------------------------------------- 1 | Artists Okay With Art being in the artpack: 2 | Aldergames 3 | AF 4 | ComfyCushion 5 | Frogapus 6 | Gurgles 7 | Jacques00 (I think) 8 | Jass_Befrold 9 | KaviCat 10 | Lethal_Doors 11 | LurkerGG 12 | mylittlepornicorn 13 | Sharona 14 | SlashySmiley 15 | UCite 16 | Volentis 17 | WolfieCanem 18 | Bluh -------------------------------------------------------------------------------- /res/achievements/dungeon_t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/dungeon_t1.png -------------------------------------------------------------------------------- /res/achievements/dungeon_t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/dungeon_t2.png -------------------------------------------------------------------------------- /res/achievements/dungeon_t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/dungeon_t3.png -------------------------------------------------------------------------------- /res/achievements/explore_bog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_bog.png -------------------------------------------------------------------------------- /res/achievements/explore_deepwoods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_deepwoods.png -------------------------------------------------------------------------------- /res/achievements/explore_desert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_desert.png -------------------------------------------------------------------------------- /res/achievements/explore_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_explorer.png -------------------------------------------------------------------------------- /res/achievements/explore_forest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_forest.png -------------------------------------------------------------------------------- /res/achievements/explore_glacialrift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_glacialrift.png -------------------------------------------------------------------------------- /res/achievements/explore_highmountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_highmountain.png -------------------------------------------------------------------------------- /res/achievements/explore_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_lake.png -------------------------------------------------------------------------------- /res/achievements/explore_mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_mountain.png -------------------------------------------------------------------------------- /res/achievements/explore_plains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_plains.png -------------------------------------------------------------------------------- /res/achievements/explore_swamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_swamp.png -------------------------------------------------------------------------------- /res/achievements/explore_whereami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/explore_whereami.png -------------------------------------------------------------------------------- /res/achievements/general_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/general_house.png -------------------------------------------------------------------------------- /res/achievements/level_t0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/level_t0.png -------------------------------------------------------------------------------- /res/achievements/level_t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/level_t1.png -------------------------------------------------------------------------------- /res/achievements/level_t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/level_t2.png -------------------------------------------------------------------------------- /res/achievements/level_t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/level_t3.png -------------------------------------------------------------------------------- /res/achievements/level_t4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/level_t4.png -------------------------------------------------------------------------------- /res/achievements/level_t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/level_t5.png -------------------------------------------------------------------------------- /res/achievements/level_t6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/level_t6.png -------------------------------------------------------------------------------- /res/achievements/level_t7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/level_t7.png -------------------------------------------------------------------------------- /res/achievements/level_t8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/level_t8.png -------------------------------------------------------------------------------- /res/achievements/placeholder_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/placeholder_locked.png -------------------------------------------------------------------------------- /res/achievements/placeholder_unlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/placeholder_unlocked.png -------------------------------------------------------------------------------- /res/achievements/population_t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/population_t1.png -------------------------------------------------------------------------------- /res/achievements/population_t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/population_t2.png -------------------------------------------------------------------------------- /res/achievements/population_t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/population_t3.png -------------------------------------------------------------------------------- /res/achievements/population_t4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/population_t4.png -------------------------------------------------------------------------------- /res/achievements/population_t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/population_t5.png -------------------------------------------------------------------------------- /res/achievements/population_t6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/population_t6.png -------------------------------------------------------------------------------- /res/achievements/population_t7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/population_t7.png -------------------------------------------------------------------------------- /res/achievements/quest_puremarble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/quest_puremarble.png -------------------------------------------------------------------------------- /res/achievements/quest_urtalover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/quest_urtalover.png -------------------------------------------------------------------------------- /res/achievements/story_finalboss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/story_finalboss.png -------------------------------------------------------------------------------- /res/achievements/story_maraesavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/story_maraesavior.png -------------------------------------------------------------------------------- /res/achievements/story_newcomer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/story_newcomer.png -------------------------------------------------------------------------------- /res/achievements/story_revenge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/story_revenge.png -------------------------------------------------------------------------------- /res/achievements/time_t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/time_t1.png -------------------------------------------------------------------------------- /res/achievements/time_t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/time_t2.png -------------------------------------------------------------------------------- /res/achievements/time_t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/time_t3.png -------------------------------------------------------------------------------- /res/achievements/time_t4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/time_t4.png -------------------------------------------------------------------------------- /res/achievements/time_t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/time_t5.png -------------------------------------------------------------------------------- /res/achievements/time_t6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/time_t6.png -------------------------------------------------------------------------------- /res/achievements/time_t7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/time_t7.png -------------------------------------------------------------------------------- /res/achievements/time_t8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/time_t8.png -------------------------------------------------------------------------------- /res/achievements/time_t9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/time_t9.png -------------------------------------------------------------------------------- /res/achievements/wealth_t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/wealth_t1.png -------------------------------------------------------------------------------- /res/achievements/wealth_t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/wealth_t2.png -------------------------------------------------------------------------------- /res/achievements/wealth_t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/achievements/wealth_t3.png -------------------------------------------------------------------------------- /res/charview/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/charview/body.png -------------------------------------------------------------------------------- /res/charview/extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/charview/extra.png -------------------------------------------------------------------------------- /res/charview/hair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/charview/hair.png -------------------------------------------------------------------------------- /res/charview/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/charview/head.png -------------------------------------------------------------------------------- /res/charview/lewd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/charview/lewd.png -------------------------------------------------------------------------------- /res/charview/outfit.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/charview/outfit.psd -------------------------------------------------------------------------------- /res/charview/tails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/charview/tails.png -------------------------------------------------------------------------------- /res/charview/wings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/charview/wings.png -------------------------------------------------------------------------------- /res/sprites/aiko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/aiko.png -------------------------------------------------------------------------------- /res/sprites/akbal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/akbal.png -------------------------------------------------------------------------------- /res/sprites/amarok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/amarok.png -------------------------------------------------------------------------------- /res/sprites/amily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/amily.png -------------------------------------------------------------------------------- /res/sprites/amily_defurr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/amily_defurr.png -------------------------------------------------------------------------------- /res/sprites/anemone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/anemone.png -------------------------------------------------------------------------------- /res/sprites/antguards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/antguards.png -------------------------------------------------------------------------------- /res/sprites/arian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/arian.png -------------------------------------------------------------------------------- /res/sprites/basilisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/basilisk.png -------------------------------------------------------------------------------- /res/sprites/bee girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/bee girl.png -------------------------------------------------------------------------------- /res/sprites/brooke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/brooke.png -------------------------------------------------------------------------------- /res/sprites/brooke_nude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/brooke_nude.png -------------------------------------------------------------------------------- /res/sprites/carpenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/carpenter.png -------------------------------------------------------------------------------- /res/sprites/ceraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/ceraph.png -------------------------------------------------------------------------------- /res/sprites/ceraphClothed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/ceraphClothed.png -------------------------------------------------------------------------------- /res/sprites/ceraphGoblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/ceraphGoblin.png -------------------------------------------------------------------------------- /res/sprites/cerulean succubus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/cerulean succubus.png -------------------------------------------------------------------------------- /res/sprites/chameleon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/chameleon.png -------------------------------------------------------------------------------- /res/sprites/chickenHarpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/chickenHarpy.png -------------------------------------------------------------------------------- /res/sprites/chillySmith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/chillySmith.png -------------------------------------------------------------------------------- /res/sprites/christmas elf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/christmas elf.png -------------------------------------------------------------------------------- /res/sprites/cinnabar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/cinnabar.png -------------------------------------------------------------------------------- /res/sprites/clara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/clara.png -------------------------------------------------------------------------------- /res/sprites/clara.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/clara.psd -------------------------------------------------------------------------------- /res/sprites/cloaked dominika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/cloaked dominika.png -------------------------------------------------------------------------------- /res/sprites/club gnoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/club gnoll.png -------------------------------------------------------------------------------- /res/sprites/corruptedGlade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/corruptedGlade.png -------------------------------------------------------------------------------- /res/sprites/cotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/cotton.png -------------------------------------------------------------------------------- /res/sprites/cumwitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/cumwitch.png -------------------------------------------------------------------------------- /res/sprites/dickworms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/dickworms.png -------------------------------------------------------------------------------- /res/sprites/drider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/drider.png -------------------------------------------------------------------------------- /res/sprites/dryad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/dryad.png -------------------------------------------------------------------------------- /res/sprites/easter bunneh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/easter bunneh.png -------------------------------------------------------------------------------- /res/sprites/edryn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/edryn.png -------------------------------------------------------------------------------- /res/sprites/edryn_preg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/edryn_preg.png -------------------------------------------------------------------------------- /res/sprites/ember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/ember.png -------------------------------------------------------------------------------- /res/sprites/erlkingClothed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/erlkingClothed.png -------------------------------------------------------------------------------- /res/sprites/erlkingNude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/erlkingNude.png -------------------------------------------------------------------------------- /res/sprites/exgartuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/exgartuan.png -------------------------------------------------------------------------------- /res/sprites/factory omnibus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/factory omnibus.png -------------------------------------------------------------------------------- /res/sprites/faerie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/faerie.png -------------------------------------------------------------------------------- /res/sprites/fenimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/fenimp.png -------------------------------------------------------------------------------- /res/sprites/fetish cultist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/fetish cultist.png -------------------------------------------------------------------------------- /res/sprites/fetish zealot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/fetish zealot.png -------------------------------------------------------------------------------- /res/sprites/gargoyle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/gargoyle.png -------------------------------------------------------------------------------- /res/sprites/ghoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/ghoul.png -------------------------------------------------------------------------------- /res/sprites/giacomo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/giacomo.png -------------------------------------------------------------------------------- /res/sprites/goblin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/goblin.png -------------------------------------------------------------------------------- /res/sprites/goblinElder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/goblinElder.png -------------------------------------------------------------------------------- /res/sprites/goblinShaman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/goblinShaman.png -------------------------------------------------------------------------------- /res/sprites/goblinWarrior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/goblinWarrior.png -------------------------------------------------------------------------------- /res/sprites/googirlsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/googirlsprite.png -------------------------------------------------------------------------------- /res/sprites/green slime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/green slime.png -------------------------------------------------------------------------------- /res/sprites/harpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/harpy.png -------------------------------------------------------------------------------- /res/sprites/heckel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/heckel.png -------------------------------------------------------------------------------- /res/sprites/heckel_nude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/heckel_nude.png -------------------------------------------------------------------------------- /res/sprites/hel-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/hel-sprite.png -------------------------------------------------------------------------------- /res/sprites/hel-sprite_BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/hel-sprite_BB.png -------------------------------------------------------------------------------- /res/sprites/hel-sprite_BB_PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/hel-sprite_BB_PF.png -------------------------------------------------------------------------------- /res/sprites/hel-sprite_PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/hel-sprite_PF.png -------------------------------------------------------------------------------- /res/sprites/hellhound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/hellhound.png -------------------------------------------------------------------------------- /res/sprites/ifris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/ifris.png -------------------------------------------------------------------------------- /res/sprites/imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/imp.png -------------------------------------------------------------------------------- /res/sprites/impMob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/impMob.png -------------------------------------------------------------------------------- /res/sprites/impOverlord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/impOverlord.png -------------------------------------------------------------------------------- /res/sprites/impWarlord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/impWarlord.png -------------------------------------------------------------------------------- /res/sprites/incubus mechanic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/incubus mechanic.png -------------------------------------------------------------------------------- /res/sprites/isabella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/isabella.png -------------------------------------------------------------------------------- /res/sprites/ivory_succubus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/ivory_succubus.png -------------------------------------------------------------------------------- /res/sprites/izma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/izma.png -------------------------------------------------------------------------------- /res/sprites/jasun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/jasun.png -------------------------------------------------------------------------------- /res/sprites/jojo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/jojo.png -------------------------------------------------------------------------------- /res/sprites/jojoTentacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/jojoTentacle.png -------------------------------------------------------------------------------- /res/sprites/joy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/joy.png -------------------------------------------------------------------------------- /res/sprites/katherine-vagrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/katherine-vagrant.png -------------------------------------------------------------------------------- /res/sprites/kelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kelly.png -------------------------------------------------------------------------------- /res/sprites/kelly_brst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kelly_brst.png -------------------------------------------------------------------------------- /res/sprites/kelly_brst_preg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kelly_brst_preg.png -------------------------------------------------------------------------------- /res/sprites/kelly_preg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kelly_preg.png -------------------------------------------------------------------------------- /res/sprites/kelt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kelt.png -------------------------------------------------------------------------------- /res/sprites/kida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kida.png -------------------------------------------------------------------------------- /res/sprites/kiha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kiha.png -------------------------------------------------------------------------------- /res/sprites/kiha_nude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kiha_nude.png -------------------------------------------------------------------------------- /res/sprites/kiha_nude_preg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kiha_nude_preg.png -------------------------------------------------------------------------------- /res/sprites/kiha_preg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kiha_preg.png -------------------------------------------------------------------------------- /res/sprites/kitsune_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kitsune_black.png -------------------------------------------------------------------------------- /res/sprites/kitsune_blonde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kitsune_blonde.png -------------------------------------------------------------------------------- /res/sprites/kitsune_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/kitsune_red.png -------------------------------------------------------------------------------- /res/sprites/latexgoogirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/latexgoogirl.png -------------------------------------------------------------------------------- /res/sprites/lilium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/lilium.png -------------------------------------------------------------------------------- /res/sprites/lottie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/lottie.png -------------------------------------------------------------------------------- /res/sprites/lumi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/lumi.png -------------------------------------------------------------------------------- /res/sprites/lynette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/lynette.png -------------------------------------------------------------------------------- /res/sprites/maddie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/maddie.png -------------------------------------------------------------------------------- /res/sprites/marae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/marae.png -------------------------------------------------------------------------------- /res/sprites/marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/marble.png -------------------------------------------------------------------------------- /res/sprites/marble_cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/marble_cow.png -------------------------------------------------------------------------------- /res/sprites/markus and lucia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/markus and lucia.png -------------------------------------------------------------------------------- /res/sprites/milkgirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/milkgirl.png -------------------------------------------------------------------------------- /res/sprites/minerva-corrupt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/minerva-corrupt.png -------------------------------------------------------------------------------- /res/sprites/minerva-pure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/minerva-pure.png -------------------------------------------------------------------------------- /res/sprites/minerva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/minerva.png -------------------------------------------------------------------------------- /res/sprites/minotaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/minotaur.png -------------------------------------------------------------------------------- /res/sprites/minotaurSons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/minotaurSons.png -------------------------------------------------------------------------------- /res/sprites/mrsCoffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/mrsCoffee.png -------------------------------------------------------------------------------- /res/sprites/naga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/naga.png -------------------------------------------------------------------------------- /res/sprites/oasis demons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/oasis demons.png -------------------------------------------------------------------------------- /res/sprites/oswald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/oswald.png -------------------------------------------------------------------------------- /res/sprites/pablo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/pablo.png -------------------------------------------------------------------------------- /res/sprites/pablo_nude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/pablo_nude.png -------------------------------------------------------------------------------- /res/sprites/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/phoenix.png -------------------------------------------------------------------------------- /res/sprites/phoenix_nude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/phoenix_nude.png -------------------------------------------------------------------------------- /res/sprites/phylla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/phylla.png -------------------------------------------------------------------------------- /res/sprites/phylla_nude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/phylla_nude.png -------------------------------------------------------------------------------- /res/sprites/phylla_preg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/phylla_preg.png -------------------------------------------------------------------------------- /res/sprites/poisontail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/poisontail.png -------------------------------------------------------------------------------- /res/sprites/priscilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/priscilla.png -------------------------------------------------------------------------------- /res/sprites/raphael.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/raphael.png -------------------------------------------------------------------------------- /res/sprites/rathazul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/rathazul.png -------------------------------------------------------------------------------- /res/sprites/rogar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/rogar.png -------------------------------------------------------------------------------- /res/sprites/rubi_hornless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/rubi_hornless.png -------------------------------------------------------------------------------- /res/sprites/rubi_horns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/rubi_horns.png -------------------------------------------------------------------------------- /res/sprites/sandtrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/sandtrap.png -------------------------------------------------------------------------------- /res/sprites/sandwich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/sandwich.png -------------------------------------------------------------------------------- /res/sprites/satyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/satyr.png -------------------------------------------------------------------------------- /res/sprites/scylla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/scylla.png -------------------------------------------------------------------------------- /res/sprites/scyllaAndBear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/scyllaAndBear.png -------------------------------------------------------------------------------- /res/sprites/sean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/sean.png -------------------------------------------------------------------------------- /res/sprites/sharkgirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/sharkgirl.png -------------------------------------------------------------------------------- /res/sprites/sophie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/sophie.png -------------------------------------------------------------------------------- /res/sprites/sophieBimbo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/sophieBimbo.png -------------------------------------------------------------------------------- /res/sprites/source/antguard.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/antguard.psd -------------------------------------------------------------------------------- /res/sprites/source/antguards.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/antguards.psd -------------------------------------------------------------------------------- /res/sprites/source/brooke.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/brooke.psd -------------------------------------------------------------------------------- /res/sprites/source/carpenter.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/carpenter.psd -------------------------------------------------------------------------------- /res/sprites/source/ceraphClothed.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/ceraphClothed.psd -------------------------------------------------------------------------------- /res/sprites/source/edryn.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/edryn.psd -------------------------------------------------------------------------------- /res/sprites/source/gargoyle.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/gargoyle.psd -------------------------------------------------------------------------------- /res/sprites/source/ghoul.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/ghoul.psd -------------------------------------------------------------------------------- /res/sprites/source/heckel.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/heckel.psd -------------------------------------------------------------------------------- /res/sprites/source/impMob.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/impMob.psd -------------------------------------------------------------------------------- /res/sprites/source/joy.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/joy.psd -------------------------------------------------------------------------------- /res/sprites/source/kelly.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/kelly.psd -------------------------------------------------------------------------------- /res/sprites/source/kelt.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/kelt.psd -------------------------------------------------------------------------------- /res/sprites/source/kiha.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/kiha.psd -------------------------------------------------------------------------------- /res/sprites/source/latexgoogirl.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/latexgoogirl.psd -------------------------------------------------------------------------------- /res/sprites/source/marble_cow.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/marble_cow.psd -------------------------------------------------------------------------------- /res/sprites/source/milkgirl.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/milkgirl.psd -------------------------------------------------------------------------------- /res/sprites/source/pablo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/pablo.psd -------------------------------------------------------------------------------- /res/sprites/source/phoenix.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/phoenix.psd -------------------------------------------------------------------------------- /res/sprites/source/phylla.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/phylla.psd -------------------------------------------------------------------------------- /res/sprites/source/raphael.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/raphael.psd -------------------------------------------------------------------------------- /res/sprites/source/sharkgirl.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/sharkgirl.psd -------------------------------------------------------------------------------- /res/sprites/source/succubus.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/succubus.psd -------------------------------------------------------------------------------- /res/sprites/source/valeria.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/valeria.psd -------------------------------------------------------------------------------- /res/sprites/source/vapula.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/vapula.psd -------------------------------------------------------------------------------- /res/sprites/source/venus_herm.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/venus_herm.psd -------------------------------------------------------------------------------- /res/sprites/source/zetaz.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/zetaz.psd -------------------------------------------------------------------------------- /res/sprites/source/zetaz_imp.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/source/zetaz_imp.psd -------------------------------------------------------------------------------- /res/sprites/spear gnoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/spear gnoll.png -------------------------------------------------------------------------------- /res/sprites/spidergirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/spidergirl.png -------------------------------------------------------------------------------- /res/sprites/spiderguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/spiderguy.png -------------------------------------------------------------------------------- /res/sprites/stuckSatyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/stuckSatyr.png -------------------------------------------------------------------------------- /res/sprites/succubus secretary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/succubus secretary.png -------------------------------------------------------------------------------- /res/sprites/tamani's daughters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/tamani's daughters.png -------------------------------------------------------------------------------- /res/sprites/tamani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/tamani.png -------------------------------------------------------------------------------- /res/sprites/tentacleMonster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/tentacleMonster.png -------------------------------------------------------------------------------- /res/sprites/uncloaked dominika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/uncloaked dominika.png -------------------------------------------------------------------------------- /res/sprites/urta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/urta.png -------------------------------------------------------------------------------- /res/sprites/urtaDrunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/urtaDrunk.png -------------------------------------------------------------------------------- /res/sprites/vagrant cats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/vagrant cats.png -------------------------------------------------------------------------------- /res/sprites/vala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/vala.png -------------------------------------------------------------------------------- /res/sprites/valaSlave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/valaSlave.png -------------------------------------------------------------------------------- /res/sprites/valeria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/valeria.png -------------------------------------------------------------------------------- /res/sprites/vapula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/vapula.png -------------------------------------------------------------------------------- /res/sprites/venus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/venus.png -------------------------------------------------------------------------------- /res/sprites/venus_herm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/venus_herm.png -------------------------------------------------------------------------------- /res/sprites/victoria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/victoria.png -------------------------------------------------------------------------------- /res/sprites/weaponsmith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/weaponsmith.png -------------------------------------------------------------------------------- /res/sprites/whitney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/whitney.png -------------------------------------------------------------------------------- /res/sprites/yamata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/yamata.png -------------------------------------------------------------------------------- /res/sprites/yara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/yara.png -------------------------------------------------------------------------------- /res/sprites/yvonne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/yvonne.png -------------------------------------------------------------------------------- /res/sprites/zetaz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/zetaz.png -------------------------------------------------------------------------------- /res/sprites/zetaz_imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites/zetaz_imp.png -------------------------------------------------------------------------------- /res/sprites8bit/akbal-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/akbal-old.png -------------------------------------------------------------------------------- /res/sprites8bit/amarok-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/amarok-old.png -------------------------------------------------------------------------------- /res/sprites8bit/amily-human-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/amily-human-old.png -------------------------------------------------------------------------------- /res/sprites8bit/amily-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/amily-old.png -------------------------------------------------------------------------------- /res/sprites8bit/anemone-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/anemone-old.png -------------------------------------------------------------------------------- /res/sprites8bit/arian-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/arian-old.png -------------------------------------------------------------------------------- /res/sprites8bit/assmole-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/assmole-old.png -------------------------------------------------------------------------------- /res/sprites8bit/basilisk-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/basilisk-old.png -------------------------------------------------------------------------------- /res/sprites8bit/beegirl-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/beegirl-old.png -------------------------------------------------------------------------------- /res/sprites8bit/bunnygirl-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/bunnygirl-old.png -------------------------------------------------------------------------------- /res/sprites8bit/ceraph-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/ceraph-old.png -------------------------------------------------------------------------------- /res/sprites8bit/cerulean-succubus-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/cerulean-succubus-old.png -------------------------------------------------------------------------------- /res/sprites8bit/chillySmith-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/chillySmith-old.png -------------------------------------------------------------------------------- /res/sprites8bit/cotton-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/cotton-old.png -------------------------------------------------------------------------------- /res/sprites8bit/cumwitch-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/cumwitch-old.png -------------------------------------------------------------------------------- /res/sprites8bit/dominika-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/dominika-old.png -------------------------------------------------------------------------------- /res/sprites8bit/dominika-unmasked-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/dominika-unmasked-old.png -------------------------------------------------------------------------------- /res/sprites8bit/drider-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/drider-old.png -------------------------------------------------------------------------------- /res/sprites8bit/edryn-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/edryn-old.png -------------------------------------------------------------------------------- /res/sprites8bit/ember-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/ember-old.png -------------------------------------------------------------------------------- /res/sprites8bit/exgartuan-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/exgartuan-old.png -------------------------------------------------------------------------------- /res/sprites8bit/faerie-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/faerie-old.png -------------------------------------------------------------------------------- /res/sprites8bit/fenimp-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/fenimp-old.png -------------------------------------------------------------------------------- /res/sprites8bit/fetish-cultist-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/fetish-cultist-old.png -------------------------------------------------------------------------------- /res/sprites8bit/fetish-zealot-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/fetish-zealot-old.png -------------------------------------------------------------------------------- /res/sprites8bit/giacomo-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/giacomo-old.png -------------------------------------------------------------------------------- /res/sprites8bit/gnoll-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/gnoll-old.png -------------------------------------------------------------------------------- /res/sprites8bit/gnoll-spearthrower-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/gnoll-spearthrower-old.png -------------------------------------------------------------------------------- /res/sprites8bit/goblin-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/goblin-old.png -------------------------------------------------------------------------------- /res/sprites8bit/goblinShaman-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/goblinShaman-old.png -------------------------------------------------------------------------------- /res/sprites8bit/goblinWarrior-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/goblinWarrior-old.png -------------------------------------------------------------------------------- /res/sprites8bit/googirl-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/googirl-old.png -------------------------------------------------------------------------------- /res/sprites8bit/harpy-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/harpy-old.png -------------------------------------------------------------------------------- /res/sprites8bit/hel-sprite-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/hel-sprite-old.png -------------------------------------------------------------------------------- /res/sprites8bit/hel-sprite_BB-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/hel-sprite_BB-old.png -------------------------------------------------------------------------------- /res/sprites8bit/hel-sprite_BB_PF-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/hel-sprite_BB_PF-old.png -------------------------------------------------------------------------------- /res/sprites8bit/hel-sprite_PF-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/hel-sprite_PF-old.png -------------------------------------------------------------------------------- /res/sprites8bit/helia-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/helia-old.png -------------------------------------------------------------------------------- /res/sprites8bit/hellhound-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/hellhound-old.png -------------------------------------------------------------------------------- /res/sprites8bit/ifris-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/ifris-old.png -------------------------------------------------------------------------------- /res/sprites8bit/imp-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/imp-old.png -------------------------------------------------------------------------------- /res/sprites8bit/impOverlord-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/impOverlord-old.png -------------------------------------------------------------------------------- /res/sprites8bit/impWarlord-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/impWarlord-old.png -------------------------------------------------------------------------------- /res/sprites8bit/incubus-mechanic-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/incubus-mechanic-old.png -------------------------------------------------------------------------------- /res/sprites8bit/isabella-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/isabella-old.png -------------------------------------------------------------------------------- /res/sprites8bit/izma-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/izma-old.png -------------------------------------------------------------------------------- /res/sprites8bit/jasun-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/jasun-old.png -------------------------------------------------------------------------------- /res/sprites8bit/jojo-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/jojo-old.png -------------------------------------------------------------------------------- /res/sprites8bit/kelt-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/kelt-old.png -------------------------------------------------------------------------------- /res/sprites8bit/kida-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/kida-old.png -------------------------------------------------------------------------------- /res/sprites8bit/kiha-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/kiha-old.png -------------------------------------------------------------------------------- /res/sprites8bit/kitsune_black-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/kitsune_black-old.png -------------------------------------------------------------------------------- /res/sprites8bit/kitsune_blonde-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/kitsune_blonde-old.png -------------------------------------------------------------------------------- /res/sprites8bit/kitsune_red-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/kitsune_red-old.png -------------------------------------------------------------------------------- /res/sprites8bit/lottie-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/lottie-old.png -------------------------------------------------------------------------------- /res/sprites8bit/lumi-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/lumi-old.png -------------------------------------------------------------------------------- /res/sprites8bit/lynnette-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/lynnette-old.png -------------------------------------------------------------------------------- /res/sprites8bit/maddie-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/maddie-old.png -------------------------------------------------------------------------------- /res/sprites8bit/marae-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/marae-old.png -------------------------------------------------------------------------------- /res/sprites8bit/marble-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/marble-old.png -------------------------------------------------------------------------------- /res/sprites8bit/marcus-and-lucia-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/marcus-and-lucia-old.png -------------------------------------------------------------------------------- /res/sprites8bit/melinda-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/melinda-old.png -------------------------------------------------------------------------------- /res/sprites8bit/minerva-corrupt-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/minerva-corrupt-old.png -------------------------------------------------------------------------------- /res/sprites8bit/minerva-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/minerva-old.png -------------------------------------------------------------------------------- /res/sprites8bit/minerva-pure-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/minerva-pure-old.png -------------------------------------------------------------------------------- /res/sprites8bit/minotaur-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/minotaur-old.png -------------------------------------------------------------------------------- /res/sprites8bit/naga-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/naga-old.png -------------------------------------------------------------------------------- /res/sprites8bit/oasis-demons-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/oasis-demons-old.png -------------------------------------------------------------------------------- /res/sprites8bit/omnibus-overseer-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/omnibus-overseer-old.png -------------------------------------------------------------------------------- /res/sprites8bit/oswald-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/oswald-old.png -------------------------------------------------------------------------------- /res/sprites8bit/phylla-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/phylla-old.png -------------------------------------------------------------------------------- /res/sprites8bit/priscilla-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/priscilla-old.png -------------------------------------------------------------------------------- /res/sprites8bit/raphael-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/raphael-old.png -------------------------------------------------------------------------------- /res/sprites8bit/rathazul-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/rathazul-old.png -------------------------------------------------------------------------------- /res/sprites8bit/roxanne-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/roxanne-old.png -------------------------------------------------------------------------------- /res/sprites8bit/sand-witch-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/sand-witch-old.png -------------------------------------------------------------------------------- /res/sprites8bit/scylla-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/scylla-old.png -------------------------------------------------------------------------------- /res/sprites8bit/sean-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/sean-old.png -------------------------------------------------------------------------------- /res/sprites8bit/secretarial-succubus-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/secretarial-succubus-old.png -------------------------------------------------------------------------------- /res/sprites8bit/sharkgirl-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/sharkgirl-old.png -------------------------------------------------------------------------------- /res/sprites8bit/shouldra-ghost-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/shouldra-ghost-old.png -------------------------------------------------------------------------------- /res/sprites8bit/shouldra-normal-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/shouldra-normal-old.png -------------------------------------------------------------------------------- /res/sprites8bit/slime-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/slime-old.png -------------------------------------------------------------------------------- /res/sprites8bit/sophie-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/sophie-old.png -------------------------------------------------------------------------------- /res/sprites8bit/sophieBimbo-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/sophieBimbo-old.png -------------------------------------------------------------------------------- /res/sprites8bit/spider-morph-f-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/spider-morph-f-old.png -------------------------------------------------------------------------------- /res/sprites8bit/spider-morph-m-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/spider-morph-m-old.png -------------------------------------------------------------------------------- /res/sprites8bit/tamani-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/tamani-old.png -------------------------------------------------------------------------------- /res/sprites8bit/tamanis-daughters-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/tamanis-daughters-old.png -------------------------------------------------------------------------------- /res/sprites8bit/urta-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/urta-old.png -------------------------------------------------------------------------------- /res/sprites8bit/vagrant-cats-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/vagrant-cats-old.png -------------------------------------------------------------------------------- /res/sprites8bit/vala-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/vala-old.png -------------------------------------------------------------------------------- /res/sprites8bit/valeria-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/valeria-old.png -------------------------------------------------------------------------------- /res/sprites8bit/victoria-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/victoria-old.png -------------------------------------------------------------------------------- /res/sprites8bit/weaponsmith-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/weaponsmith-old.png -------------------------------------------------------------------------------- /res/sprites8bit/whitney-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/whitney-old.png -------------------------------------------------------------------------------- /res/sprites8bit/worms-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/worms-old.png -------------------------------------------------------------------------------- /res/sprites8bit/xmas-elf-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/xmas-elf-old.png -------------------------------------------------------------------------------- /res/sprites8bit/yara-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/yara-old.png -------------------------------------------------------------------------------- /res/sprites8bit/yvonne-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/sprites8bit/yvonne-old.png -------------------------------------------------------------------------------- /res/ui/CoCLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/CoCLogo.png -------------------------------------------------------------------------------- /res/ui/Shrewsbury-Titling_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/Shrewsbury-Titling_Bold.ttf -------------------------------------------------------------------------------- /res/ui/Shrewsbury-Titling_Bold_orig.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/Shrewsbury-Titling_Bold_orig.ttf -------------------------------------------------------------------------------- /res/ui/StatsBarBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/StatsBarBottom.png -------------------------------------------------------------------------------- /res/ui/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/arrow-down.png -------------------------------------------------------------------------------- /res/ui/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/arrow-up.png -------------------------------------------------------------------------------- /res/ui/background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/background1.jpg -------------------------------------------------------------------------------- /res/ui/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/background2.png -------------------------------------------------------------------------------- /res/ui/background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/background3.png -------------------------------------------------------------------------------- /res/ui/background4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/background4.png -------------------------------------------------------------------------------- /res/ui/backgroundKaizo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/backgroundKaizo.png -------------------------------------------------------------------------------- /res/ui/button0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/button0.jpg -------------------------------------------------------------------------------- /res/ui/button1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/button1.jpg -------------------------------------------------------------------------------- /res/ui/button2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/button2.jpg -------------------------------------------------------------------------------- /res/ui/button3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/button3.jpg -------------------------------------------------------------------------------- /res/ui/button4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/button4.jpg -------------------------------------------------------------------------------- /res/ui/button5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/button5.jpg -------------------------------------------------------------------------------- /res/ui/button6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/button6.jpg -------------------------------------------------------------------------------- /res/ui/button7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/button7.jpg -------------------------------------------------------------------------------- /res/ui/button8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/button8.jpg -------------------------------------------------------------------------------- /res/ui/button9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/button9.jpg -------------------------------------------------------------------------------- /res/ui/buttonsmall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/buttonsmall.jpg -------------------------------------------------------------------------------- /res/ui/disclaimer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/disclaimer-bg.png -------------------------------------------------------------------------------- /res/ui/monsterpanel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/monsterpanel1.png -------------------------------------------------------------------------------- /res/ui/monsterpanel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/monsterpanel2.png -------------------------------------------------------------------------------- /res/ui/monsterpanel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/monsterpanel3.png -------------------------------------------------------------------------------- /res/ui/monsterpanel4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/monsterpanel4.png -------------------------------------------------------------------------------- /res/ui/pf_ronda_seven.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/pf_ronda_seven.ttf -------------------------------------------------------------------------------- /res/ui/pf_ronda_seven_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/pf_ronda_seven_bold.ttf -------------------------------------------------------------------------------- /res/ui/scroll_bar_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/scroll_bar_bottom.png -------------------------------------------------------------------------------- /res/ui/scroll_bar_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/scroll_bar_mid.png -------------------------------------------------------------------------------- /res/ui/scroll_bar_shaft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/scroll_bar_shaft.png -------------------------------------------------------------------------------- /res/ui/scroll_bar_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/scroll_bar_top.png -------------------------------------------------------------------------------- /res/ui/scroll_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/scroll_down.png -------------------------------------------------------------------------------- /res/ui/scroll_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/scroll_up.png -------------------------------------------------------------------------------- /res/ui/sidebar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/sidebar1.png -------------------------------------------------------------------------------- /res/ui/sidebar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/sidebar2.png -------------------------------------------------------------------------------- /res/ui/sidebar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/sidebar3.png -------------------------------------------------------------------------------- /res/ui/sidebar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/sidebar4.png -------------------------------------------------------------------------------- /res/ui/sidebarKaizo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/sidebarKaizo.png -------------------------------------------------------------------------------- /res/ui/time-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/time-bg.png -------------------------------------------------------------------------------- /res/ui/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/tooltip.png -------------------------------------------------------------------------------- /res/ui/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kitteh6660/Corruption-of-Champions-Mod/cb30846ba811d446195de4ebc05967d05d48b5ef/res/ui/warning.png -------------------------------------------------------------------------------- /test/AllTestsSuite.as: -------------------------------------------------------------------------------- 1 | package { 2 | 3 | import ClassesSuite; 4 | 5 | [Suite] 6 | [RunWith("org.flexunit.runners.Suite")] 7 | public class AllTestsSuite 8 | { 9 | public var classesSuit:ClassesSuite; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/classes/HelperSuite.as: -------------------------------------------------------------------------------- 1 | package classes { 2 | 3 | import classes.helper.DummyOutputTest; 4 | import classes.helper.FireButtonEventTest; 5 | import classes.helper.MemoryLogTargetTest; 6 | import classes.helper.StageLocatorTest; 7 | 8 | [Suite] 9 | [RunWith("org.flexunit.runners.Suite")] 10 | public class HelperSuite 11 | { 12 | public var stageLocatorTest:StageLocatorTest; 13 | public var memoryLogTargetTest:MemoryLogTargetTest; 14 | public var fireButtonEventTest:FireButtonEventTest; 15 | public var dummyOutputTest:DummyOutputTest; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /test/classes/Items/ArmorsSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Items { 2 | import classes.Items.Armors.GownTest; 3 | 4 | [Suite] 5 | [RunWith("org.flexunit.runners.Suite")] 6 | public class ArmorsSuite 7 | { 8 | public var gownTest:GownTest 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/classes/Items/ConsumablesSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Items { 2 | import classes.Items.Consumables.KangaFruitTest; 3 | import classes.Items.Consumables.WhiskerFruitTest; 4 | 5 | [Suite] 6 | [RunWith("org.flexunit.runners.Suite")] 7 | public class ConsumablesSuite 8 | { 9 | public var kangaFruitTest:KangaFruitTest 10 | public var whiskerFruitTest:WhiskerFruitTest 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /test/classes/ItemsSuite.as: -------------------------------------------------------------------------------- 1 | package classes { 2 | import classes.Items.ArmorsSuite; 3 | import classes.Items.ConsumableTest; 4 | import classes.Items.ConsumablesSuite; 5 | import classes.Items.MutationsTest; 6 | 7 | [Suite] 8 | [RunWith("org.flexunit.runners.Suite")] 9 | public class ItemsSuite 10 | { 11 | public var mutationsTest:MutationsTest; 12 | public var consumableTest:ConsumableTest; 13 | public var armorsSuite:ArmorsSuite; 14 | public var consumablesSuite:ConsumablesSuite; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /test/classes/MenusSuite.as: -------------------------------------------------------------------------------- 1 | package classes { 2 | import classes.menus.GenderDebugTest; 3 | 4 | [Suite] 5 | [RunWith("org.flexunit.runners.Suite")] 6 | public class MenusSuite 7 | { 8 | public var genderDebugTest:GenderDebugTest 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/classes/Scenes/Areas/BogSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Areas 2 | { 3 | import classes.Scenes.Areas.Bog.PhoukaSceneTest; 4 | 5 | [Suite] 6 | [RunWith("org.flexunit.runners.Suite")] 7 | public class BogSuite 8 | { 9 | public var phoukaSceneTest:PhoukaSceneTest 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/classes/Scenes/Areas/ForestSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Areas 2 | { 3 | import classes.Scenes.Areas.Forest.FaerieTest; 4 | 5 | [Suite] 6 | [RunWith("org.flexunit.runners.Suite")] 7 | public class ForestSuite 8 | { 9 | public var faerieTest:FaerieTest; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/classes/Scenes/Areas/MountainSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Areas 2 | { 3 | import classes.Scenes.Areas.Mountain.InfestedHellhoundSceneTest; 4 | 5 | [Suite] 6 | [RunWith("org.flexunit.runners.Suite")] 7 | public class MountainSuite 8 | { 9 | public var infestedHellhoundSceneTest:InfestedHellhoundSceneTest; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/classes/Scenes/Areas/SwampSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Areas 2 | { 3 | import classes.Scenes.Areas.Swamp.CorruptedDriderSceneTest; 4 | 5 | [Suite] 6 | [RunWith("org.flexunit.runners.Suite")] 7 | public class SwampSuite 8 | { 9 | public var corruptedDriderSceneTest:CorruptedDriderSceneTest; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/classes/Scenes/AreasSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes 2 | { 3 | import classes.Scenes.Areas.BogSuite; 4 | import classes.Scenes.Areas.DeepWoodsTest; 5 | import classes.Scenes.Areas.ForestSuite; 6 | import classes.Scenes.Areas.MountainSuite; 7 | import classes.Scenes.Areas.SwampSuite; 8 | 9 | [Suite] 10 | [RunWith("org.flexunit.runners.Suite")] 11 | public class AreasSuite 12 | { 13 | public var mountainSuit:MountainSuite; 14 | public var forestSuit:ForestSuite; 15 | public var bogSuit:BogSuite; 16 | public var swampSuit:SwampSuite; 17 | 18 | public var deepWoodsTest:DeepWoodsTest; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /test/classes/Scenes/NPCsSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes { 2 | 3 | import classes.Scenes.NPCs.IsabellaSceneTest; 4 | import classes.Scenes.NPCs.JojoSceneTest; 5 | import classes.Scenes.NPCs.IsabellaFollowerSceneTest; 6 | import classes.Scenes.NPCs.JojoTest; 7 | 8 | [Suite] 9 | [RunWith("org.flexunit.runners.Suite")] 10 | public class NPCsSuite 11 | { 12 | public var jojoSceneTest:JojoSceneTest; 13 | public var isabellaSceneTest : IsabellaSceneTest; 14 | public var isabellaFollowerSceneTest:IsabellaFollowerSceneTest; 15 | public var jojoTest:JojoTest 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /test/classes/Scenes/Places/BazaarSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Places { 2 | import classes.Scenes.Places.Bazaar.BlackCockTest; 3 | import classes.Scenes.Places.Bazaar.RoxanneTest; 4 | 5 | [Suite] 6 | [RunWith("org.flexunit.runners.Suite")] 7 | public class BazaarSuite 8 | { 9 | public var blackCockTest:BlackCockTest; 10 | public var roxanneTest:RoxanneTest; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /test/classes/Scenes/Places/FarmSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes.Places { 2 | import classes.Scenes.Places.Farm.KeltSceneTest; 3 | 4 | [Suite] 5 | [RunWith("org.flexunit.runners.Suite")] 6 | public class FarmSuite 7 | { 8 | public var keltSceneTest:KeltSceneTest; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/classes/Scenes/PlacesSuite.as: -------------------------------------------------------------------------------- 1 | package classes.Scenes { 2 | 3 | import classes.Scenes.Places.BazaarSuite; 4 | import classes.Scenes.Places.FarmSuite; 5 | 6 | [Suite] 7 | [RunWith("org.flexunit.runners.Suite")] 8 | public class PlacesSuite 9 | { 10 | public var bazaarSuit:BazaarSuite; 11 | public var farmSuite:FarmSuite; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/classes/helper/StageLocatorTest.as: -------------------------------------------------------------------------------- 1 | package classes.helper { 2 | import org.flexunit.asserts.*; 3 | import org.hamcrest.assertThat; 4 | import org.hamcrest.core.*; 5 | import org.hamcrest.number.*; 6 | import org.hamcrest.object.*; 7 | import org.hamcrest.text.*; 8 | 9 | import flash.display.Stage; 10 | 11 | import classes.helper.StageLocator; 12 | 13 | public class StageLocatorTest { 14 | 15 | [Test] 16 | public function stageSet():void { 17 | assertThat(StageLocator.stage, not(nullValue())); 18 | } 19 | } 20 | } --------------------------------------------------------------------------------