├── .gitignore ├── Auditions ├── AmbushAtTheJunction │ ├── AmbushAtTheJunction.py │ ├── Readme.md │ └── hero.png ├── AuditionLevel │ ├── AuditionLevel.py │ ├── Readme.md │ └── hero.png ├── AuditionLevelJavierRizzo │ ├── AuditionLevelJavierRizzo.py │ ├── Readme.md │ └── hero.png ├── BattleForTheCoinTowers │ ├── BattleForTheCoinTowers.py │ ├── Readme.md │ └── hero.png ├── BattleOfBrockwood │ ├── BattleOfBrockwood.py │ ├── Readme.md │ └── hero.png ├── BattleOfFlagstaff │ ├── BattleOfFlagstaff.py │ ├── Readme.md │ └── hero.png ├── BattleRoyale │ ├── BattleRoyale.py │ ├── Readme.md │ └── hero.png ├── BecomeALegend │ ├── BecomeALegend.py │ ├── Readme.md │ └── hero.png ├── CashOut │ ├── CashOut.py │ ├── Readme.md │ └── hero.png ├── CloseEncounters │ ├── CloseEncounters.py │ ├── Readme.md │ └── hero.png ├── DwanlevelTest1 │ ├── DwanlevelTest1.py │ ├── Readme.md │ └── hero.png ├── EpicFlagBattle │ ├── EpicFlagBattle.py │ ├── Readme.md │ └── hero.png ├── FlagCombat │ ├── FlagCombat.py │ ├── Readme.md │ └── hero.png ├── ForestPincer │ ├── ForestPincer.py │ ├── Readme.md │ └── hero.png ├── ForestWar │ ├── ForestWar.py │ ├── Readme.md │ └── hero.png ├── GiveThisLevelAGoodName │ ├── GiveThisLevelAGoodName.py │ ├── Readme.md │ └── hero.png ├── Intervention │ ├── Intervention.py │ ├── Readme.md │ └── hero.png ├── KitesLanding │ ├── KitesLanding.py │ ├── Readme.md │ └── hero.png ├── MakeADifference │ ├── MakeADifference.py │ ├── Readme.md │ └── hero.png ├── OneLevelToRuleThemAll │ ├── OneLevelToRuleThemAll.py │ ├── Readme.md │ └── hero.png ├── OrgeRush │ ├── OrgeRush.py │ ├── Readme.md │ └── hero.png ├── PreEpicFlagBattle │ ├── PreEpicFlagBattle.py │ ├── Readme.md │ └── hero.png ├── Prototype01 │ ├── Prototype01.py │ ├── Readme.md │ └── hero.png ├── Rampage │ ├── Rampage.py │ ├── Readme.md │ └── hero.png ├── RampageUnleashed │ ├── RampageUnleashed.py │ ├── Readme.md │ └── hero.png ├── RumbleInTheJungle09 │ ├── Readme.md │ ├── RumbleInTheJungle09.py │ └── hero.png ├── Shiv217Artisanlevel │ ├── Readme.md │ ├── Shiv217Artisanlevel.py │ └── hero.png ├── Testbraenb │ ├── Readme.md │ ├── Testbraenb.py │ └── hero.png ├── TheBattleForTheTower │ ├── Readme.md │ ├── TheBattleForTheTower.py │ └── hero.png ├── TheOneTrueSavior │ ├── Readme.md │ ├── TheOneTrueSavior.py │ └── hero.png ├── Thefightforchiefartisan │ ├── Readme.md │ ├── Thefightforchiefartisan.py │ └── hero.png ├── TippingTheTide │ ├── Readme.md │ ├── TippingTheTide.py │ └── hero.png ├── Ttestbraen │ ├── Readme.md │ ├── Ttestbraen.py │ └── hero.png └── TurnTheTide │ ├── Readme.md │ ├── TurnTheTide.py │ └── hero.png ├── Deprecated ├── Brawlwood │ ├── BrawlwoodHuman.py │ ├── BrawlwoodOgres.py │ ├── Readme.md │ └── hero.png ├── DungeonArena │ ├── DungeonArenaH.js │ ├── DungeonArenaO.js │ ├── Readme.md │ └── hero.png ├── GoldRush │ ├── GoldRushH.js │ ├── GoldRushO.js │ ├── Readme.md │ └── hero.png ├── Greed │ ├── GreedHuman.js │ ├── GreedOgres.js │ ├── Readme.md │ └── hero.png └── SkySpanHumanHero │ ├── Readme.md │ ├── SkySpanHumanComandor.py │ ├── SkySpanHumanHero.py │ ├── __init__.py │ └── hero.png ├── Desert ├── AirBridge │ ├── AirBridge.py │ ├── Readme.md │ └── hero.png ├── AlchemicPower │ ├── AlchemicPower.py │ ├── Readme.md │ └── hero.png ├── ArrayLevelDesert │ ├── ArrayLevelDesert.py │ ├── Readme.md │ └── hero.png ├── BaitAndSwitch │ ├── BaitAndSwitch.py │ ├── Readme.md │ └── hero.png ├── BankRaid │ ├── BankRaid.py │ ├── Readme.md │ └── hero.png ├── BashEmAll │ ├── BashEmAll.py │ ├── Readme.md │ └── hero.png ├── BasinStampede │ ├── BasinStampede.py │ ├── Readme.md │ └── hero.png ├── Bookkeeper │ ├── Bookkeeper.py │ ├── Readme.md │ └── hero.png ├── BrittleMorale │ ├── BrittleMorale.py │ ├── Readme.md │ └── hero.png ├── BrownNoise │ ├── BrownNoise.py │ ├── Readme.md │ └── hero.png ├── CanyonOfStorms │ ├── CanyonOfStorms.py │ ├── Readme.md │ └── hero.png ├── ChainOfCommand │ ├── ChainOfCommand.py │ ├── Readme.md │ └── hero.png ├── ChaseThem │ ├── ChaseThem.py │ ├── Readme.md │ └── hero.png ├── ClashOfClones │ ├── ClashOfClones.py │ ├── Readme.md │ └── hero.png ├── ContinuousAlchemy │ ├── ContinuousAlchemy.py │ ├── Readme.md │ └── hero.png ├── CoordinatedDefense │ ├── CoordinatedDefense.py │ ├── Readme.md │ └── hero.png ├── Crossroads │ ├── Crossroads.py │ ├── Readme.md │ └── hero.png ├── CruxOfTheDesert │ ├── CruxOfTheDesert.py │ ├── Readme.md │ └── hero.png ├── CubicMinefield │ ├── CubicMinefield.py │ ├── Readme.md │ └── hero.png ├── CursedValley │ ├── CursedValley.py │ ├── Readme.md │ └── hero.png ├── DangerousKey │ ├── DangerousKey.py │ ├── Readme.md │ └── hero.png ├── DecoyDrill │ ├── DecoyDrill.py │ ├── Readme.md │ └── hero.png ├── DesertCombat │ ├── DesertCombat.py │ ├── Readme.md │ └── hero.png ├── DesertDelta │ ├── DesertDelta.py │ ├── Readme.md │ └── hero.png ├── DiamondDozen │ ├── DiamondDozen.py │ ├── Readme.md │ └── hero.png ├── DistractionManeuver │ ├── DistractionManeuver.py │ ├── Readme.md │ └── hero.png ├── DontRushBeQuiet │ ├── DontRushBeQuiet.py │ ├── Readme.md │ └── hero.png ├── DoubleCheek │ ├── DoubleCheek.py │ ├── Readme.md │ └── hero.png ├── DoubleGaps │ ├── DoubleGaps.py │ ├── Readme.md │ └── hero.png ├── Dust │ ├── Dust.py │ ├── Readme.md │ └── hero.png ├── FairBattle │ ├── FairBattle.py │ ├── Readme.md │ └── hero.png ├── FastAndFurryOus │ ├── FastAndFurryOus.py │ ├── Readme.md │ └── hero.png ├── GasAttack │ ├── GasAttack.py │ ├── Readme.md │ └── hero.png ├── Goalkeeper │ ├── Goalkeeper.py │ ├── Readme.md │ └── hero.png ├── GoldenMirage │ ├── GoldenMirage.py │ ├── Readme.md │ └── hero.png ├── GuessMyNumber │ ├── GuessMyNumber.py │ ├── Readme.md │ └── hero.png ├── Harrowland │ ├── Harrowland.py │ ├── Harrowland2.py │ ├── Readme.md │ └── hero.png ├── HoardingGold │ ├── HoardingGold.py │ ├── Readme.md │ └── hero.png ├── HotGate │ ├── HotGate.py │ ├── Readme.md │ └── hero.png ├── Interception │ ├── Interception.py │ ├── Readme.md │ └── hero.png ├── KeepingTime │ ├── KeepingTime.py │ ├── Readme.md │ └── hero.png ├── KeyTraps │ ├── KeyTraps.py │ ├── Readme.md │ └── hero.png ├── Lurkers │ ├── Lurkers.py │ ├── Readme.md │ └── hero.png ├── MadMaxer │ ├── MadMaxer.py │ ├── Readme.md │ └── hero.png ├── MadMaxerGetsGreedy │ ├── MadMaxerGetsGreedy.py │ ├── Readme.md │ └── hero.png ├── MadMaxerRedemption │ ├── MadMaxerRedemption.py │ ├── Readme.md │ └── hero.png ├── MadMaxerSellsOut │ ├── MadMaxerSellsOut.py │ ├── Readme.md │ └── hero.png ├── MadMaxerStrikesBack │ ├── MadMaxerStrikesBack.py │ ├── Readme.md │ └── hero.png ├── Marauder │ ├── Marauder.py │ ├── Readme.md │ └── hero.png ├── MedicalAttention │ ├── MedicalAttention.py │ ├── Readme.md │ └── hero.png ├── Minesweeper │ ├── Minesweeper.py │ ├── Readme.md │ └── hero.png ├── MirageMaker │ ├── MirageMaker.py │ ├── Readme.md │ └── hero.png ├── MushroomNoise │ ├── MushroomNoise.py │ ├── Readme.md │ └── hero.png ├── NoPainNoGain │ ├── NoPainNoGain.py │ ├── Readme.md │ └── hero.png ├── Oasis │ ├── Oasis.py │ ├── Readme.md │ └── hero.png ├── OddSandstorm │ ├── OddSandstorm.py │ ├── Readme.md │ └── hero.png ├── OlympicRace │ ├── OlympicRace.py │ ├── Readme.md │ └── hero.png ├── OperationKilldeer │ ├── OperationKilldeer.py │ ├── Readme.md │ └── hero.png ├── PetAdjutant │ ├── PetAdjutant.py │ └── Readme.md ├── PetEngineer │ ├── PetEngineer.py │ ├── Readme.md │ └── hero.png ├── PetTranslator │ ├── PetTranslator.py │ ├── Readme.md │ └── hero.png ├── PiedPiper │ ├── PiedPiper.py │ ├── Readme.md │ └── hero.png ├── PoliceRaid │ ├── PoliceRaid.py │ ├── Readme.md │ └── hero.png ├── PreferentialTreatment │ ├── PreferentialTreatment.py │ ├── Readme.md │ └── hero.png ├── RecruitingQueue │ ├── Readme.md │ ├── RecruitingQueue.py │ └── hero.png ├── SacredGrove │ ├── Readme.md │ ├── SacredGrove.py │ └── hero.png ├── SacredStatue │ ├── Readme.md │ ├── SacredStatue1.py │ ├── SacredStatue2.py │ ├── SacredStatue3.py │ └── hero.png ├── SafetyBlanket │ ├── Readme.md │ ├── SafetyBlanket.py │ └── hero.png ├── SandMushrooms │ ├── Readme.md │ ├── SandMushrooms.py │ └── hero.png ├── SandSnakes │ ├── Readme.md │ ├── SandSnakes.py │ └── hero.png ├── SarvenBrawl │ ├── Readme.md │ ├── SarvenBrawl1.py │ ├── SarvenBrawl2.py │ ├── SarvenBrawl3.py │ ├── SarvenBrawl4.py │ ├── SarvenBrawl5.py │ └── hero.png ├── SarvenGaps │ ├── Readme.md │ ├── SarvenGaps.py │ └── hero.png ├── SarvenOutpost │ ├── Readme.md │ ├── SarvenOutpost.py │ └── hero.png ├── SarvenRescue │ ├── Readme.md │ ├── SarvenRescue.py │ └── hero.png ├── SarvenRoad │ ├── Readme.md │ ├── SarvenRoad.py │ └── hero.png ├── SarvenSavior │ ├── Readme.md │ ├── SarvenSavior.py │ └── hero.png ├── SarvenSentry │ ├── Readme.md │ ├── SarvenSentry.py │ └── hero.png ├── SarvenShepherd │ ├── Readme.md │ ├── SarvenShepherd.py │ └── hero.png ├── SarvenSiege │ ├── Readme.md │ ├── SarvenSiege.py │ ├── SarvenSiege2.py │ └── hero.png ├── SarvenSum │ ├── Readme.md │ ├── SarvenSum.py │ └── hero.png ├── SarvenTreasure │ ├── Readme.md │ ├── SarvenTreasure.py │ ├── SarvenTreasure2.py │ └── hero.png ├── ScyllaAndCharybdis │ ├── Readme.md │ ├── ScyllaAndCharybdis.py │ └── hero.png ├── SecondGem │ ├── Readme.md │ ├── SecondGem.py │ └── hero.png ├── ShineGetter │ ├── Readme.md │ ├── ShineGetter.py │ └── hero.png ├── SoldierOgreAndPeasant │ ├── Readme.md │ ├── SoldierOgreAndPeasant.py │ └── hero.png ├── SpinachPower │ ├── Readme.md │ ├── SpinachPower.py │ └── hero.png ├── StrandedInTheDunes │ ├── Readme.md │ ├── StrandedInTheDunes.py │ └── hero.png ├── TeamWork │ ├── Readme.md │ ├── TeamWork.py │ └── hero.png ├── TheDunes │ ├── Readme.md │ ├── TheDunes.py │ └── hero.png ├── TheGreatYakStampede │ ├── Readme.md │ ├── TheGreatYakStampede.py │ └── hero.png ├── TheMightySandYak │ ├── Readme.md │ ├── TheMightySandYak.py │ └── hero.png ├── TheTrials │ ├── Readme.md │ ├── TheTrials.py │ └── hero.png ├── Thunderhooves │ ├── Readme.md │ ├── Thunderhooves.py │ └── hero.png ├── TiresomeGcd │ ├── Readme.md │ ├── TiresomeGcd.py │ └── hero.png ├── UndergroundBusiness │ ├── Readme.md │ ├── UndergroundBusiness.py │ └── hero.png ├── ValleyOfTheKing │ ├── Readme.md │ ├── ValleyOfTheKing.py │ └── hero.png ├── WanderingSouls │ ├── Readme.md │ ├── WanderingSouls.py │ └── hero.png ├── WeakestQuickest │ ├── Readme.md │ ├── WeakestQuickest.py │ └── hero.png ├── WhileOgresWereSleeping │ ├── Readme.md │ ├── WhileOgresWereSleeping.py │ └── hero.png ├── WishingWell │ ├── Readme.md │ ├── WishingWell.py │ └── hero.png ├── YakHeist │ ├── Readme.md │ ├── YakHeist.py │ └── hero.png ├── Yakstraction │ ├── Readme.md │ ├── Yakstraction.py │ └── hero.png ├── ZigZagAndZoom │ ├── Readme.md │ ├── ZigZagAndZoom.py │ └── hero.png └── РunterМalley │ ├── Readme.md │ ├── hero.png │ └── РunterМalley.py ├── DungeonsKitgard ├── AMayhemOfMunchkins │ ├── AMayhemOfMunchkins.py │ ├── Readme.md │ └── hero.png ├── AttackWisely │ ├── AttackWisely.py │ ├── Readme.md │ └── hero.png ├── Banefire │ ├── Banefire.py │ ├── Readme.md │ └── hero.png ├── Breakout │ ├── Breakout.py │ ├── Readme.md │ └── hero.png ├── ByAnyOtherName │ ├── ByAnyOtherName.py │ ├── Readme.md │ └── hero.png ├── CavernSurvival │ └── Readme.md ├── CellCommentary │ ├── CellCommentary.py │ ├── Readme.md │ └── hero.png ├── ClosingTheDistance │ ├── ClosingTheDistance.py │ ├── Readme.md │ └── hero.png ├── CrawlwaysOfKithgard │ ├── CrawlwaysOfKithgard.py │ ├── Readme.md │ └── hero.png ├── CupboardsOfKithgard │ ├── CupboardsOfKithgard.py │ ├── Readme.md │ └── hero.png ├── CupboardsOfKithgardA │ ├── CupboardsOfKithgardA.py │ ├── Readme.md │ └── hero.png ├── CupboardsOfKithgardB │ ├── CupboardsOfKithgardB.py │ ├── Readme.md │ └── hero.png ├── DagronsOfKithgard │ ├── DagronsOfKithgard.py │ ├── Readme.md │ └── hero.png ├── DeadlyDungeonRescue │ ├── DeadlyDungeonRescue.py │ ├── Readme.md │ └── hero.png ├── DescendingFurther │ ├── DescendingFurther.py │ ├── Readme.md │ └── hero.png ├── DestroyingAngel │ ├── DestroyingAngel.py │ ├── Readme.md │ └── hero.png ├── DreadDoor │ ├── DreadDoor.py │ ├── Readme.md │ └── hero.png ├── DungeonsOfKitgard │ ├── DungeonsOfKitgard.py │ ├── Readme.md │ └── hero.png ├── EnemyMine │ ├── EnemyMine.py │ ├── Readme.md │ └── hero.png ├── EvesCodecombat │ ├── EvesCodecombat.py │ ├── Readme.md │ └── hero.png ├── FavorableOdds │ ├── FavorableOdds.py │ ├── Readme.md │ └── hero.png ├── FindTheSpy │ ├── FindTheSpy.py │ ├── Readme.md │ └── hero.png ├── FireDancing │ ├── FireDancing.py │ ├── Readme.md │ └── hero.png ├── FootstepsInAMaze │ ├── FootstepsInAMaze.py │ ├── Readme.md │ └── hero.png ├── ForgetfulGemsmith │ ├── ForgetfulGemsmith.js │ ├── ForgetfulGemsmith.py │ ├── Readme.md │ └── hero.png ├── GemsInTheDeep │ ├── GemsInTheDepth.js │ ├── GemsInTheDepth.py │ ├── Readme.md │ └── hero.png ├── GridmancerEppsteinPolygon │ ├── GridmancerEppsteinPolygon.py │ ├── Readme.md │ └── hero.png ├── HackAndDash │ ├── HackAndDash.py │ ├── Readme.md │ └── hero.png ├── HauntedKithmaze │ ├── HauntedKithmaze.py │ ├── Readme.md │ └── hero.png ├── IllusoryInterruption │ ├── IllusoryInterruption.py │ ├── Readme.md │ └── hero.png ├── IngredientIdentification │ ├── IngredientIdentification.py │ └── Readme.md ├── KithgardApprentice │ ├── KithgardApprentice.py │ ├── Readme.md │ └── hero.png ├── KithgardBrawl │ ├── KithgardBrawl-Current.py │ ├── KithgardBrawl1.py │ ├── KithgardBrawl10.py │ ├── KithgardBrawl11.py │ ├── KithgardBrawl12.py │ ├── KithgardBrawl13.py │ ├── KithgardBrawl2.py │ ├── KithgardBrawl3.py │ ├── KithgardBrawl4.py │ ├── KithgardBrawl5.py │ ├── KithgardBrawl6.py │ ├── KithgardBrawl7.py │ ├── KithgardBrawl8.py │ ├── KithgardBrawl9.py │ ├── Readme.md │ ├── hero.png │ └── strike.png ├── KithgardGates │ ├── KithgardGates.py │ ├── Readme.md │ └── hero.png ├── KithgardLibrarian │ ├── KithgardLibrarian.js │ ├── KithgardLibrarian.py │ ├── Readme.md │ └── hero.png ├── KithgardMastery │ ├── KithgardMastery.py │ ├── Readme.md │ └── hero.png ├── KnownEnemy │ ├── KnownEnemy.py │ ├── Readme.md │ └── hero.png ├── KounterKithwise │ ├── KounterKithwise.py │ ├── Readme.md │ └── hero.png ├── LongKithmaze │ ├── LongKithmaze.py │ ├── Readme.md │ └── hero.png ├── LoopDaLoop │ ├── LoopDaLoop.py │ ├── Readme.md │ └── hero.png ├── LostInTheStacks │ ├── LostInTheStacks.py │ ├── Readme.md │ └── hero.png ├── LowlyKithmen │ ├── LowlyKithmen.py │ ├── Readme.md │ └── hero.png ├── MasterOfNames │ ├── MasterOfNames.py │ ├── Readme.md │ └── hero.png ├── MightierThanTheSword │ ├── MightierThanTheSword.py │ ├── Readme.md │ └── hero.png ├── OgresOfHanoi │ ├── OgresOfHanoi.js │ ├── Readme.md │ └── hero.png ├── PongPong │ ├── PongPong.py │ ├── Readme.md │ └── hero.png ├── PropheciesAndPredictions │ ├── PropheciesAndPredictions.py │ ├── Readme.md │ └── hero.png ├── ProtectionShadow │ ├── ProtectionShadow.py │ ├── Readme.md │ └── hero.png ├── RadiantAura │ ├── RadiantAura.py │ ├── Readme.md │ └── hero.png ├── RiddlingKithmaze │ ├── Readme.md │ ├── RiddlingKithmaze.py │ └── hero.png ├── RobotRagnarok │ ├── Readme.md │ ├── RobotRagnarok.py │ └── hero.png ├── ShadowGuard │ ├── Readme.md │ ├── ShadowGuard.js │ ├── ShadowGuard.py │ └── hero.png ├── SignsAndPortents │ ├── Readme.md │ ├── SignsAndPortents.js │ ├── SignsAndPortents.py │ └── hero.png ├── SleepingOnTheJob │ ├── Readme.md │ ├── SleepingOnTheJob.py │ └── hero.png ├── TableScraps │ ├── Readme.md │ ├── TableScraps.py │ └── hero.png ├── TacticalStrike │ ├── Readme.md │ ├── TacticalStrike.py │ └── hero.png ├── TheFinalKithmaze │ ├── Readme.md │ ├── TheFinalKithmaze.py │ └── hero.png ├── TheGauntlet │ ├── Readme.md │ ├── TheGauntlet.py │ └── hero.png ├── TheGauntletA │ ├── Readme.md │ ├── TheGauntletA.py │ └── hero.png ├── TheGauntletB │ ├── Readme.md │ ├── TheGauntletB.py │ └── hero.png ├── TheLongMarch │ ├── Readme.md │ ├── TheLongMarch.py │ └── hero.png ├── ThePrisoner │ ├── Readme.md │ ├── ThePrisoner.py │ └── hero.png ├── TheRaisedSword │ ├── Readme.md │ ├── TheRaisedSword.js │ ├── TheRaisedSword.py │ └── hero.png ├── TheSecondKithmaze │ ├── Readme.md │ ├── TheSecondKithmaze.py │ └── hero.png ├── TheSkeleton │ ├── Readme.md │ ├── TheSkeleton.py │ └── hero.png ├── TrueNames │ ├── Readme.md │ ├── TrueNames.js │ ├── TrueNames.py │ └── hero.png ├── TwistedCanyon │ ├── Readme.md │ ├── TwistedCanyon.py │ └── hero.png ├── WakkaMaul │ ├── Readme.md │ ├── WakkaMaul.py │ └── hero.png └── КiddlingKithmaze │ ├── Readme.md │ ├── hero.png │ └── КiddlingKithmaze.js ├── Forest ├── AFineMint │ ├── AFineMint.py │ ├── Readme.md │ └── hero.png ├── AgrippaRefactored │ ├── AgrippaRefactored.py │ ├── Readme.md │ └── hero.png ├── AgrippaReturned │ ├── AgrippaReturned.py │ ├── Readme.md │ └── hero.png ├── Airdrop │ ├── Airdrop.py │ ├── Readme.md │ └── hero.png ├── Apocalypse │ ├── Apocalypse.py │ ├── Readme.md │ └── hero.png ├── ArcaneAlly │ ├── ArcaneAlly.py │ ├── Readme.md │ └── hero.png ├── ArrowproofWolf │ ├── ArrowproofWolf.py │ ├── Readme.md │ └── hero.png ├── BackToBack │ ├── BackToBack.py │ ├── Readme.md │ └── hero.png ├── BackwoodsAmbush │ ├── BackwoodsAmbush.py │ ├── Readme.md │ └── hero.png ├── BackwoodsAmbushA │ ├── BackwoodsAmbushA.py │ ├── Readme.md │ └── hero.png ├── BackwoodsBombardier │ ├── BackwoodsBombardier.py │ ├── Readme.md │ └── hero.png ├── BackwoodsBrawl │ ├── BackwoodsBrawl-Current.py │ ├── BackwoodsBrawl1.py │ ├── BackwoodsBrawl2.py │ ├── BackwoodsBrawl3.py │ ├── BackwoodsBrawl4.py │ ├── BackwoodsBrawl5.py │ ├── BackwoodsBrawl6.py │ ├── Readme.md │ ├── hero.png │ └── strike.png ├── BackwoodsBuddy │ ├── BackwoodsBuddy.py │ ├── Readme.md │ └── hero.png ├── BackwoodsFork │ ├── BackwoodsFork.py │ ├── Readme.md │ └── hero.png ├── BackwoodsStandoff │ ├── BackwoodsStandoff.py │ ├── Readme.md │ └── hero.png ├── BackwoodsStandoffA │ ├── BackwoodsStandoffA.py │ ├── Readme.md │ └── hero.png ├── BackwoodsStandoffB │ ├── BackwoodsStandoffB.py │ ├── Readme.md │ └── hero.png ├── BackwoodsTreasure │ ├── BackwoodsTreasure-Current.py │ ├── BackwoodsTreasure1.py │ ├── BackwoodsTreasure2.py │ ├── BackwoodsTreasure3.py │ ├── BackwoodsTreasure4.py │ ├── BackwoodsTreasure5.py │ ├── Readme.md │ ├── hero.png │ └── strike.png ├── BadNeighborhood │ ├── BadNeighborhood.py │ ├── Readme.md │ └── hero.png ├── BlindDistance │ ├── BlindDistance.py │ ├── Readme.md │ └── hero.png ├── Bonemender │ ├── Bonemender.py │ ├── Readme.md │ └── hero.png ├── BoomAndBust │ ├── BoomAndBust.py │ ├── Readme.md │ └── hero.png ├── BoulderWoods │ ├── BoulderWoods.py │ ├── Readme.md │ └── hero.png ├── BrawlerHunt │ ├── BrawlerHunt.py │ ├── Readme.md │ └── hero.png ├── BuddysName │ ├── BuddysName.py │ ├── Readme.md │ └── hero.png ├── BuddysNameA │ ├── BuddysNameA.py │ ├── Readme.md │ └── hero.png ├── BuddysNameB │ ├── BuddysNameB.py │ ├── Readme.md │ └── hero.png ├── BurlboleGrove │ ├── BurlboleGrove.py │ ├── Readme.md │ └── hero.png ├── BurlsBeetsBooleans │ ├── BurlsBeetsBooleans.py │ ├── Readme.md │ └── hero.png ├── CatchMe │ ├── CatchMe.py │ ├── Readme.md │ └── hero.png ├── Chameleons │ ├── Chameleons.py │ ├── Readme.md │ └── hero.png ├── ClosedCrossroad │ ├── ClosedCrossroad.py │ ├── Readme.md │ └── hero.png ├── CoinHunter │ ├── CoinHunter.py │ ├── Readme.md │ └── hero.png ├── CoinMania │ ├── CoinMania.py │ ├── Readme.md │ └── hero.png ├── Coincrumbs │ ├── Coincrumbs.py │ ├── Readme.md │ └── hero.png ├── Coinucopia │ ├── Coinucopia.py │ ├── Readme.md │ └── hero.png ├── CopperMeadows │ ├── CopperMeadows.py │ ├── Readme.md │ └── hero.png ├── CursedWonderglade │ ├── CursedWonderglade.py │ ├── Readme.md │ └── hero.png ├── DeadlyPursuit │ ├── DeadlyPursuit.py │ ├── Readme.md │ └── hero.png ├── DefendTheGarrison │ ├── DefendTheGarrison.py │ └── Readme.md ├── DefenseOfPlainswood │ ├── DefenseOfPlainswood.py │ └── Readme.md ├── DejaBrew │ ├── DejaBrew.py │ └── Readme.md ├── DoomGlade │ ├── DoomGlade.py │ └── Readme.md ├── DropTheFlag │ ├── DropTheFlag.py │ └── Readme.md ├── DuelingGrounds │ ├── DuelingGrounds.py │ ├── DuelingGrounds2.py │ └── Readme.md ├── EagleEye │ ├── EagleEye.py │ └── Readme.md ├── Elseweyr │ ├── Elseweyr.py │ └── Readme.md ├── EndangeredBurl │ ├── EndangeredBurl.py │ └── Readme.md ├── ExtraExtrapolation │ ├── ExtraExtrapolation.py │ └── Readme.md ├── ForestCannonDancing │ ├── ForestCannonDancing.py │ └── Readme.md ├── ForestEvasion │ ├── ForestEvasion.py │ └── Readme.md ├── ForestFireDancing │ ├── ForestFireDancing.py │ └── Readme.md ├── ForestFlowerGrove │ ├── ForestFlowerGrove.py │ └── Readme.md ├── ForestJogging │ ├── ForestJogging.py │ └── Readme.md ├── ForestMiners │ ├── ForestMiners.py │ └── Readme.md ├── ForestShadow │ ├── ForestShadow.py │ └── Readme.md ├── FriendAndFoe │ ├── FriendAndFoe.py │ └── Readme.md ├── GemsOrDeath │ ├── GemsOrDeath.py │ └── Readme.md ├── GoFetch │ ├── GoFetch.py │ └── Readme.md ├── GreedTraps │ ├── GreedTraps.py │ └── Readme.md ├── GuardDog │ ├── GuardDog.py │ └── Readme.md ├── HarvestTime │ ├── HarvestTime.py │ └── Readme.md ├── HitAndFreeze │ ├── HitAndFreeze.py │ └── Readme.md ├── HoldForReinforcements │ ├── HoldForReinforcements.py │ └── Readme.md ├── HoldTheForestPass │ ├── HoldTheForestPass.py │ └── Readme.md ├── IfStravaganza │ ├── IfStravaganza.py │ └── Readme.md ├── IndTheTrap │ ├── IndTheTrap.py │ └── Readme.md ├── LeaveItToCleaver │ ├── LeaveItToCleaver.py │ └── Readme.md ├── LogicalCircle │ ├── LogicalCircle.py │ └── Readme.md ├── LogicalConclusion │ ├── LogicalConclusion.py │ └── Readme.md ├── LogicalPath │ ├── LogicalPath.py │ └── Readme.md ├── LongRangeDivision │ ├── LongRangeDivision.py │ └── Readme.md ├── LongRoad │ ├── LongRoad.py │ └── Readme.md ├── LostViking │ ├── LostViking.py │ └── Readme.md ├── MagicExam │ ├── MagicExam.py │ └── Readme.md ├── MailInterceptor │ ├── MailInterceptor.py │ └── Readme.md ├── ManiacMunchkins │ ├── ManiacMunchkins.py │ └── Readme.md ├── MegaMunchkinAttacks │ ├── MegaMunchkinAttacks.py │ └── Readme.md ├── MetalDetector │ ├── MetalDetector.py │ └── Readme.md ├── MindTheTrap │ ├── MindTheTrap.py │ └── Readme.md ├── MultiplayerTreasureGrove │ ├── MultiplayerTreasureGrove.py │ └── Readme.md ├── MunchkinHarvest │ ├── MunchkinHarvest.py │ └── Readme.md ├── MunchkinSwarm │ ├── MunchkinSwarm.py │ └── Readme.md ├── NineGems │ ├── NineGems.py │ └── Readme.md ├── OgreEncampment │ ├── OgreEncampment.py │ └── Readme.md ├── OneWrongStep │ ├── OneWrongStep.py │ └── Readme.md ├── OverTheGardenWall │ ├── OverTheGardenWall.py │ └── Readme.md ├── PassingThrough │ ├── PassingThrough.py │ └── Readme.md ├── PatrolBuster │ ├── PatrolBuster.py │ └── Readme.md ├── PatrolBusterA │ ├── PatrolBusterA.py │ └── Readme.md ├── PeasantProtection │ ├── PeasantProtection.py │ └── Readme.md ├── PeekABoom │ ├── PeekABoom.py │ └── Readme.md ├── PetQuiz │ ├── PetQuiz.py │ └── Readme.md ├── PhdKitty │ ├── PhdKitty.py │ └── Readme.md ├── PicnicBuster │ ├── PicnicBuster.py │ └── Readme.md ├── RangeFinder │ ├── RangeFinder.py │ └── Readme.md ├── ReturnToThornbushFarm │ ├── Readme.md │ └── ReturnToThornbushFarm.py ├── ReturnToThornbushFarmA │ ├── Readme.md │ └── ReturnToThornbushFarmA.py ├── ReturnToThornbushFarmB │ ├── Readme.md │ └── ReturnToThornbushFarmB.py ├── RewardAndRuination │ ├── Readme.md │ └── RewardAndRuination.py ├── RichForager │ ├── Readme.md │ └── RichForager.py ├── SaltedEarth │ ├── Readme.md │ └── SaltedEarth.py ├── SeekAndHide │ ├── Readme.md │ └── SeekAndHide.py ├── ShieldRush │ ├── Readme.md │ └── ShieldRush.py ├── ShortSightedBurl │ ├── Readme.md │ └── ShortSightedBurl.py ├── Shrapnel │ ├── Readme.md │ └── Shrapnel.py ├── SiegeOfStonehold │ ├── Readme.md │ └── SiegeOfStonehold.py ├── SignalCorpse │ ├── Readme.md │ └── SignalCorpse.py ├── SpringThunder │ ├── Readme.md │ └── SpringThunder.py ├── StarShower │ ├── Readme.md │ └── StarShower.py ├── StillnessInMotion │ ├── Readme.md │ └── StillnessInMotion.py ├── StormingTheFarmhouse │ ├── Readme.md │ └── StormingTheFarmhouse.py ├── StormingTheTowersOfAreth │ ├── Readme.md │ └── StormingTheTowersOfAreth.py ├── SwiftDagger │ ├── Readme.md │ └── SwiftDagger.py ├── TacticalTiming │ ├── Readme.md │ └── TacticalTiming.py ├── Taunting │ ├── Readme.md │ └── Taunting.py ├── TeleportLasso │ ├── Readme.md │ └── TeleportLasso.py ├── TheAgrippaDefense │ ├── Readme.md │ └── TheAgrippaDefense.py ├── TheAgrippaDefenseA │ ├── Readme.md │ └── TheAgrippaDefenseA.py ├── TheAgrippaDefenseB │ ├── Readme.md │ └── TheAgrippaDefenseB.py ├── TheOneWizard │ ├── Readme.md │ ├── TheOneWizard.py │ └── hero.png ├── TheWizardsDoor │ ├── Readme.md │ └── TheWizardsDoor.py ├── TheWizardsHaunt │ ├── Readme.md │ └── TheWizardsHaunt.py ├── TheWizardsPlane │ ├── Readme.md │ └── TheWizardsPlane.py ├── ThornbushFarm │ ├── Readme.md │ └── ThornbushFarm.py ├── ThumbBiter │ ├── Readme.md │ └── ThumbBiter.py ├── TombGhost │ ├── Readme.md │ └── TombGhost.py ├── TombRaider │ ├── Readme.md │ └── TombRaider.py ├── TouchOfDeath │ ├── Readme.md │ └── TouchOfDeath.py ├── UnfairSupport │ ├── Readme.md │ └── UnfairSupport.py ├── UsefulCompetitors │ ├── Readme.md │ └── UsefulCompetitors.py ├── UsualDay │ ├── Readme.md │ └── UsualDay.py ├── VillageChampion │ ├── Readme.md │ └── VillageChampion.py ├── VillageGuard │ ├── Readme.md │ └── VillageGuard.py ├── VillageRover │ ├── Readme.md │ └── VillageRover.py ├── VillageWarder │ ├── Readme.md │ └── VillageWarder.py ├── WhiteRabbit │ ├── Readme.md │ └── WhiteRabbit.py ├── WildHorses │ ├── Readme.md │ └── WildHorses.py ├── WindingTrail │ ├── Readme.md │ └── WindingTrail.py ├── Wonderglade │ ├── Readme.md │ └── Wonderglade.py ├── WoodlandCleaver │ ├── Readme.md │ └── WoodlandCleaver.py └── WoodlandCubbies │ ├── Readme.md │ └── WoodlandCubbies.py ├── Functions ├── Mimic.py ├── Necromancer.py ├── Puma.py ├── RiticCold.py └── pathClear.py ├── GameDev1 ├── AMazeIng │ ├── AMazeIng.py │ ├── Readme.md │ └── hero.png ├── BehaviorDrivenDevelopment │ ├── BehaviorDrivenDevelopment.py │ ├── Readme.md │ └── hero.png ├── ClickGait │ ├── ClickGait.py │ ├── Readme.md │ └── hero.png ├── CrushingIt │ ├── CrushingIt.py │ ├── Readme.md │ └── hero.png ├── GameGrove │ ├── GameGrove.py │ ├── Readme.md │ └── hero.png ├── Gameville │ ├── Gameville.py │ ├── Readme.md │ └── hero.png ├── Gemtacular │ ├── Gemtacular.py │ ├── Readme.md │ └── hero.png ├── GiveAndTake │ ├── GiveAndTake.py │ ├── Readme.md │ └── hero.png ├── HedgeMagic │ ├── HedgeMagic.py │ ├── Readme.md │ └── hero.png ├── HerosJourney │ ├── HerosJourney.py │ ├── Readme.md │ └── hero.png ├── OverTheGardenWall │ ├── OverTheGardenWall.py │ ├── Readme.md │ └── hero.png ├── PersistencePays │ ├── PersistencePays.py │ ├── Readme.md │ └── hero.png ├── SeeingIsBelieving │ ├── Readme.md │ ├── SeeingIsBelieving.py │ └── hero.png ├── TabulaRasa │ ├── Readme.md │ ├── TabulaRasa.py │ └── hero.png ├── ThemBones │ ├── Readme.md │ ├── ThemBones.py │ └── hero.png ├── ThrowingFire │ ├── Readme.md │ ├── ThrowingFire.py │ └── hero.png ├── TimeToLive │ ├── Readme.md │ ├── TimeToLive.py │ └── hero.png └── VorpalMouse │ ├── Readme.md │ ├── VorpalMouse.py │ └── hero.png ├── GameDev2 ├── AccountsDepartment │ ├── AccountsDepartment.py │ ├── Readme.md │ └── hero.png ├── AdventureTime │ ├── AdventureTime.py │ ├── Readme.md │ └── hero.png ├── AgonyOfDefeat │ ├── AgonyOfDefeat.py │ ├── Readme.md │ └── hero.png ├── ArmyTraining │ ├── ArmyTraining.js │ ├── Readme.md │ └── hero.png ├── ArmyTraining2 │ ├── ArmyTraining2.js │ ├── Readme.md │ └── hero.png ├── Berserker │ ├── Berserker.py │ ├── Readme.md │ └── hero.png ├── Cages │ ├── Cages.py │ ├── Readme.md │ └── hero.png ├── CenterFormation │ ├── CenterFormation.py │ ├── Readme.md │ └── hero.png ├── Chokepoint │ ├── Chokepoint.py │ ├── Readme.md │ └── hero.png ├── DifficultyCoin │ ├── DifficultyCoin.py │ ├── Readme.md │ └── hero.png ├── DisintegrationArrow │ ├── DisintegrationArrow.py │ ├── Readme.md │ └── hero.png ├── DontTouchThem │ ├── DontTouchThem.py │ ├── Readme.md │ └── hero.png ├── ForestIncursion │ ├── ForestIncursion.js │ ├── Readme.md │ └── hero.png ├── FreezeTag │ ├── FreezeTag.py │ ├── Readme.md │ └── hero.png ├── FromDustToDust │ ├── FromDustToDust.py │ ├── Readme.md │ └── hero.png ├── GameDev2FinalProject │ ├── GameDev2FinalProject.js │ ├── Readme.md │ └── hero.png ├── GameOfCoinsStep1Layout │ ├── GameOfCoinsStep1Layout.py │ ├── Readme.md │ └── hero.png ├── GameOfCoinsStep2Score │ ├── GameOfCoinsStep2Score.py │ ├── Readme.md │ └── hero.png ├── GameOfCoinsStep3Enemies │ ├── GameOfCoinsStep3Enemies.py │ ├── Readme.md │ └── hero.png ├── GameOfCoinsStep4PowerUps │ ├── GameOfCoinsStep4PowerUps.py │ ├── Readme.md │ └── hero.png ├── GameOfCoinsStep5Balance │ ├── GameOfCoinsStep5Balance.py │ ├── Readme.md │ └── hero.png ├── GuardDuty │ ├── GuardDuty.js │ ├── Readme.md │ └── hero.png ├── HotGems │ ├── HotGems.py │ ├── Readme.md │ └── hero.png ├── Jailbreak │ ├── Jailbreak.py │ ├── Readme.md │ └── hero.png ├── LernaeanHydra │ ├── LernaeanHydra.py │ ├── Readme.md │ └── hero.png ├── Palimpsest │ ├── Palimpsest.js │ ├── Readme.md │ └── hero.png ├── PressurePlate │ ├── PressurePlate.py │ ├── Readme.md │ └── hero.png ├── RandomRiposte │ ├── RandomRiposte.py │ ├── Readme.md │ └── hero.png ├── RangerDanger │ ├── RangerDanger.py │ ├── Readme.md │ └── hero.png ├── RiskAndReward │ ├── Readme.md │ ├── RiskAndReward.py │ └── hero.png ├── RunForGold │ ├── Readme.md │ ├── RunForGold.py │ └── hero.png ├── StandardOperatingProcedure │ ├── Readme.md │ ├── StandardOperatingProcedure.js │ └── hero.png ├── StickShift │ ├── Readme.md │ ├── StickShift.py │ └── hero.png ├── Stormcloud │ ├── Readme.md │ ├── Stormcloud.py │ └── hero.png └── Teatime │ ├── Readme.md │ ├── Teatime.py │ └── hero.png ├── GameDev3 ├── LooneyGems │ ├── LooneyGems.py │ ├── Readme.md │ └── hero.png ├── LoopingForest │ ├── LoopingForest.py │ ├── Readme.md │ └── hero.png ├── PingBowling │ ├── PingBowling.py │ ├── Readme.md │ └── hero.png ├── QuantumJump │ ├── QuantumJump.py │ ├── Readme.md │ └── hero.png ├── Runner │ ├── Readme.md │ ├── Runner.py │ └── hero.png ├── RunnerStep1Environment │ ├── Readme.md │ ├── RunnerStep1Environment.py │ └── hero.png ├── RunnerStep2Environment │ └── RunnerStep2Scoring.py ├── RunnerStep2Scoring │ ├── Readme.md │ ├── RunnerStep2Scoring.py │ └── hero.png ├── RunnerStep3Enemies │ ├── Readme.md │ ├── RunnerStep3Enemies.py │ └── hero.png ├── RunnerStep4Balance │ ├── Readme.md │ ├── RunnerStep4Balance.py │ └── hero.png ├── SmoothRun │ ├── Readme.md │ ├── SmoothRun.py │ └── hero.png ├── TheBigGuy │ ├── Readme.md │ ├── TheBigGuy.py │ └── hero.png └── TheRuleOfTheSquare │ ├── Readme.md │ ├── TheRuleOfTheSquare.py │ └── hero.png ├── Glacier ├── AlchemicStack │ ├── AlchemicStack.py │ ├── Readme.md │ └── hero.png ├── AssemblySpeed │ ├── AssemblySpeed.py │ ├── Readme.md │ └── hero.png ├── BehindTheDarkness │ ├── BehindTheDarkness.py │ ├── Readme.md │ └── hero.png ├── BinaryDeployment │ ├── BinaryDeployment.js │ ├── BinaryDeployment.lua │ ├── BinaryDeployment.py │ ├── Readme.md │ └── hero.png ├── BombingRun │ ├── BombingRun.py │ ├── Readme.md │ └── hero.png ├── Brewball │ ├── Brewball.py │ ├── Readme.md │ └── hero.png ├── BrokenCircles │ ├── BrokenCircles.js │ ├── BrokenCircles.py │ ├── Readme.md │ └── hero.png ├── CircleWalking │ ├── CircleWalking.py │ ├── Readme.md │ └── hero.png ├── CodedOrders │ ├── CodedOrders.py │ ├── Readme.md │ └── hero.png ├── CountLinks │ ├── CountLinks.py │ ├── Readme.md │ └── hero.png ├── Darkhopper │ ├── Darkhopper.py │ ├── Readme.md │ └── hero.png ├── Dizziness │ ├── Dizziness.py │ ├── Readme.md │ └── hero.png ├── DoubleQueue │ ├── DoubleQueue.py │ ├── Readme.md │ └── hero.png ├── FirstOut │ ├── FirstOut.py │ ├── Readme.md │ └── hero.png ├── FormUp │ ├── FormUp.py │ ├── Readme.md │ └── hero.png ├── Fractalization │ ├── Fractalization.py │ ├── Readme.md │ └── hero.png ├── FragileMaze │ ├── FragileMaze.py │ ├── Readme.md │ └── hero.png ├── GemByGem │ ├── GemByGem.py │ ├── Readme.md │ └── hero.png ├── GoldenChoice │ ├── GoldenChoice.py │ ├── Readme.md │ └── hero.png ├── GridmancerRedux │ ├── GridmancerRedux.py │ ├── Readme.md │ └── hero.png ├── GuessMyNumber │ ├── GuessMyNumber.py │ ├── Readme.md │ └── hero.png ├── HashedYaks │ ├── HashedYaks.py │ ├── Readme.md │ └── hero.png ├── HashingMagic │ ├── HashingMagic.py │ ├── Readme.md │ └── hero.png ├── Hitman │ ├── Hitman.py │ ├── Readme.md │ └── hero.png ├── IceLife │ ├── IceLife.py │ ├── Readme.md │ └── hero.png ├── IceSoccer │ ├── IceSoccer.py │ ├── Readme.md │ └── hero.png ├── KelvintaphBurgler │ ├── KelvintaphBurgler.py │ ├── Readme.md │ └── hero.png ├── KelvintaphCrusader │ ├── KelvintaphCrusader.py │ ├── Readme.md │ └── hero.png ├── KelvintaphDefiler │ ├── KelvintaphDefiler.py │ ├── Readme.md │ └── hero.png ├── KelvintaphPillars │ ├── KelvintaphPillars.py │ ├── Readme.md │ └── hero.png ├── KeyStack │ ├── KeyStack.py │ ├── Readme.md │ └── hero.png ├── LinkedKeys │ ├── LinkedKeys.py │ └── Readme.md ├── Polygonception │ ├── Polygonception.py │ └── Readme.md ├── PrecisionKicking │ ├── PrecisionKicking.py │ ├── Readme.md │ └── hero.png ├── PrimePathing │ ├── PrimePathing.py │ └── Readme.md ├── QueueManager │ ├── QueueManager.py │ └── Readme.md ├── Razorfray │ ├── Razorfray.py │ └── Readme.md ├── SerpentSavings │ ├── Readme.md │ ├── SerpentSavings-mimic-help.py │ └── SerpentSavings.py ├── SkatingAway │ ├── Readme.md │ ├── SkatingAway.py │ └── hero.png ├── SkeletonPuzzle │ ├── Readme.md │ └── SkeletonPuzzle.py ├── SnowflakesOnTheIce │ ├── Readme.md │ └── SnowflakesOnTheIce.py ├── StackTriage │ ├── Readme.md │ └── StackTriage.py ├── TreasuredInIce │ ├── Readme.md │ └── TreasuredInIce.py └── Wireless │ ├── Readme.md │ └── Wireless.py ├── HourOfCode2018 ├── BlockPusher │ ├── BlockPusher.py │ └── Readme.md ├── BoulderPusher │ ├── BoulderPusher.py │ └── Readme.md ├── BreakingBall │ ├── BreakingBall.py │ └── Readme.md ├── ParadigmShift │ ├── ParadigmShift.py │ └── Readme.md ├── PastureGuards │ ├── PastureGuards.py │ └── Readme.md ├── PhaseShift │ ├── PhaseShift.py │ └── Readme.md ├── PointlessRobots │ ├── PointlessRobots.py │ └── Readme.md ├── Readme.md ├── RunningBubbles │ ├── Readme.md │ └── RunningBubbles.py └── ToughCollector │ ├── Readme.md │ └── ToughCollector.py ├── Intro └── Readme.md ├── Mountain ├── AggressiveMimicry │ ├── AggressiveMimicry.py │ └── Readme.md ├── AlmostPerfectMinefield │ ├── AlmostPerfectMinefield.py │ └── Readme.md ├── AlpineRally │ ├── AlpineRally.py │ └── Readme.md ├── AnonymousBank │ ├── AnonymousBank.py │ └── Readme.md ├── Antipodes │ ├── Antipodes.py │ └── Readme.md ├── AreaOfYetis │ ├── AreaOfYetis.py │ └── Readme.md ├── BitsAndTrits │ ├── BitsAndTrits.py │ └── Readme.md ├── BlackDiamond │ ├── BlackDiamond.py │ └── Readme.md ├── BoneDance │ ├── BoneDance.py │ └── Readme.md ├── BorrowedSword │ ├── BorrowedSword.py │ └── Readme.md ├── CannonLandingForce │ ├── CannonLandingForce.py │ └── Readme.md ├── CircumferenceOfYaks │ ├── CircumferenceOfYaks.py │ └── Readme.md ├── CloudripBrawl │ ├── CloudripBrawl.py │ ├── CloudripBrawl2.py │ ├── CloudripBrawl3.py │ └── Readme.md ├── CloudripCommander │ ├── CloudripCommander.py │ └── Readme.md ├── CloudripSiege │ ├── CloudripSiege1.py │ └── Readme.md ├── CloudripTreasure │ ├── CloudripTreasure1.py │ ├── CloudripTreasure2.py │ ├── CloudripTreasure3.py │ └── Readme.md ├── ClumsyCircle │ ├── ClumsyCircle.py │ └── Readme.md ├── ClutteredCorridors │ ├── ClutteredCorridors.py │ └── Readme.md ├── ConvenientEnemy │ ├── ConvenientEnemy.py │ └── Readme.md ├── CountEmptiness │ ├── CountEmptiness.py │ └── Readme.md ├── CragTag │ ├── CragTag.py │ └── Readme.md ├── DanceOff │ ├── DanceOff.py │ └── Readme.md ├── DangerPicklock │ ├── DangerPicklock.py │ └── Readme.md ├── DangerValley │ ├── DangerValley.py │ └── Readme.md ├── DangerousTracks │ ├── DangerousTracks.py │ └── Readme.md ├── DistractingDungeon │ ├── DistractingDungeon.py │ └── Readme.md ├── DoubleAgent │ ├── DoubleAgent.py │ └── Readme.md ├── EchoOfWar │ ├── EchoOfWar.py │ └── Readme.md ├── ExplosiveWorks │ ├── ExplosiveWorks.py │ └── Readme.md ├── FenceBuilder │ ├── FenceBuilder.py │ └── Readme.md ├── FizzbuzzPath │ ├── FizzbuzzPath.py │ └── Readme.md ├── FlawlessPairs │ ├── FlawlessPairs.py │ └── Readme.md ├── ForestGarden │ ├── ForestGarden.py │ └── Readme.md ├── Gardener │ ├── Gardener.py │ └── Readme.md ├── GridMinefield │ ├── GridMinefield.py │ └── Readme.md ├── GridSearch │ ├── GridSearch.py │ └── Readme.md ├── GrimDetermination │ ├── GrimDetermination.py │ └── Readme.md ├── Highlanders │ ├── Highlanders.py │ └── Readme.md ├── HowMuch │ ├── HowMuch.py │ └── Readme.md ├── Humantron │ ├── Humantron.py │ └── Readme.md ├── HuntersAndPrey │ ├── HuntersAndPrey.py │ └── Readme.md ├── HuntingParty │ ├── HuntingParty.py │ └── Readme.md ├── IceHunter │ ├── IceHunter.py │ └── Readme.md ├── InMyName │ ├── InMyName.py │ └── Readme.md ├── KithgardEnchanter │ ├── KithgardEnchanter.py │ └── Readme.md ├── LibraryTactician │ ├── LibraryTactician.py │ └── Readme.md ├── LoudQuietness │ ├── LoudQuietness.py │ └── Readme.md ├── MakeAdvances │ ├── MakeAdvances.py │ └── Readme.md ├── MatchCord │ ├── MatchCord.py │ └── Readme.md ├── MedicSchool │ ├── MedicSchool.py │ └── Readme.md ├── MinedGems │ ├── MinedGems.py │ └── Readme.md ├── MistyIslandMine │ ├── MistyIslandMine.py │ └── Readme.md ├── MixedUnitTactics │ ├── MixedUnitTactics.py │ └── Readme.md ├── MountainFlowerGrove │ ├── MountainFlowerGrove.py │ └── Readme.md ├── MountainMercenaries │ ├── MountainMercenaries.py │ └── Readme.md ├── NobleSacrifice │ ├── NobleSacrifice.py │ └── Readme.md ├── Northwest │ ├── Northwest.py │ └── Readme.md ├── OgreGorgeGouger │ ├── OgreGorgeGouger.py │ └── Readme.md ├── PerilousPassage │ ├── PerilousPassage.py │ └── Readme.md ├── PerimeterDefense │ ├── PerimeterDefense.py │ └── Readme.md ├── PeskyYaks │ ├── PeskyYaks.py │ └── Readme.md ├── PowerPoints │ ├── PowerPoints.py │ └── Readme.md ├── ProtectAndServe │ ├── ProtectAndServe.py │ └── Readme.md ├── QuickFort │ ├── QuickFort.py │ └── Readme.md ├── RaidersOfTheLongDark │ ├── RaidersOfTheLongDark.py │ └── Readme.md ├── RationalDefense │ ├── RationalDefense.py │ └── Readme.md ├── ReadingRumble │ ├── ReadingRumble.py │ └── Readme.md ├── ReapingFire │ ├── Readme.md │ └── ReapingFire.py ├── RectangleFormation │ ├── Readme.md │ └── RectangleFormation.py ├── ReindeerSpotter │ ├── Readme.md │ └── ReindeerSpotter.py ├── ReindeerTender │ ├── Readme.md │ └── ReindeerTender.py ├── ReindeerWakeup │ ├── Readme.md │ └── ReindeerWakeup.py ├── ResourceValleys │ ├── Readme.md │ └── ResourceValleys.py ├── RestlessDead │ ├── Readme.md │ └── RestlessDead.py ├── RingBearer │ ├── Readme.md │ └── RingBearer.py ├── RitualOfRectangling │ ├── Readme.md │ └── RitualOfRectangling.py ├── SafeSpot │ ├── Readme.md │ └── SafeSpot.py ├── SesamePath │ ├── Readme.md │ └── SesamePath.py ├── Slalom │ ├── Readme.md │ └── Slalom.py ├── Sleepwalkers │ ├── Readme.md │ └── Sleepwalkers.py ├── SlumberingSample │ ├── Readme.md │ └── SlumberingSample.py ├── Snowdrops │ ├── Readme.md │ └── Snowdrops.py ├── SowingFire │ ├── Readme.md │ └── SowingFire.py ├── SquareShield │ ├── Readme.md │ ├── SquareShield.py │ └── hero.png ├── SteelclawGap │ ├── Readme.md │ ├── SteelclawGap.py │ └── hero.png ├── SubarrayRetreat │ ├── Readme.md │ ├── SubarrayRetreat.py │ └── hero.png ├── SummitsGate │ ├── Readme.md │ ├── SummitsGate.py │ └── hero.png ├── TheBaneOfSoldiers │ ├── Readme.md │ ├── TheBaneOfSoldiers.py │ └── hero.png ├── TheGeometryOfFlowers │ ├── Readme.md │ ├── TheGeometryOfFlowers.py │ └── hero.png ├── TheHuntBegins │ ├── Readme.md │ ├── TheHuntBegins.py │ └── hero.png ├── TheSpyAmongUs │ ├── Readme.md │ ├── TheSpyAmongUs.py │ └── hero.png ├── TheTwoFlowers │ ├── Readme.md │ ├── TheTwoFlowers.py │ └── hero.png ├── ThinkAhead │ ├── Readme.md │ ├── ThinkAhead.py │ └── hero.png ├── ThreeStepPassword │ ├── Readme.md │ ├── ThreeStepPassword.py │ └── hero.png ├── TimberGuard │ ├── Readme.md │ ├── TimberGuard.py │ └── hero.png ├── TimberTurncoat │ ├── Readme.md │ ├── TimberTurncoat.py │ └── hero.png ├── ToArms │ ├── Readme.md │ ├── ToArms.py │ └── hero.png ├── ToilAndTrouble │ ├── Readme.md │ ├── ToilAndTrouble.py │ └── hero.png ├── TreasureCave │ ├── Readme.md │ ├── TreasureCave.py │ └── hero.png ├── Triage │ ├── Readme.md │ ├── Triage.py │ └── hero.png ├── TrojanYeti │ ├── Readme.md │ ├── TrojanYeti.py │ └── hero.png ├── TwinsPower │ ├── Readme.md │ ├── TwinsPower.py │ └── hero.png ├── UneasyTruce │ ├── Readme.md │ ├── UneasyTruce.py │ └── hero.png ├── VisionOfOgres │ ├── Readme.md │ ├── VisionOfOgres.py │ └── hero.png ├── VitalPowers │ ├── Readme.md │ ├── VitalPowers.py │ ├── VitalPowersAlt.py │ └── hero.png ├── VolcanoFighters │ ├── Readme.md │ ├── VolcanoFighters.py │ └── hero.png ├── WhatInCarnation │ ├── Readme.md │ ├── WhatInCarnation.py │ └── hero.png ├── YetiAway │ ├── Readme.md │ ├── YetiAway.py │ └── hero.png ├── YetiBeater │ ├── Readme.md │ └── YetiBeater.py ├── YetiEater │ ├── Readme.md │ ├── YetiEater.py │ └── hero.png ├── ZeroSum │ ├── Readme.md │ ├── ZeroSum.py │ └── hero.png └── ZooKeeper │ ├── Readme.md │ ├── ZooKeeper.py │ └── hero.png ├── Multiplayer ├── AceOfCoders │ ├── AceOfCodersHuman.py │ ├── AceOfCodersOgres.py │ ├── AceOfCodersWinningStrategy.js │ ├── Readme.md │ └── hero.png ├── CaptureTheirFlag │ ├── CaptureTheirFlagHumans.js │ ├── CaptureTheirFlagOgres.js │ ├── Readme.md │ └── hero.png ├── CavernSurvival │ ├── CavernSurvivalKnight.py │ ├── CavernSurvivalNecromancer.py │ ├── CavernSurvivalRiticCold.py │ ├── Readme.md │ ├── hero.png │ └── hero2.png ├── CrossBones │ ├── CrossBonesHuman.js │ ├── CrossBonesOgres.js │ ├── Readme.md │ └── hero.png ├── DuelingGrounds │ ├── DuelingGrounds.py │ ├── Readme.md │ └── hero.png ├── Harrowland │ ├── Harrowland.py │ ├── Readme.md │ └── hero.png ├── MultiplayerTreasureGrove │ ├── MultiplayerTreasureGrove.py │ ├── MultiplayerTreasureGroveAlt.py │ ├── Readme.md │ └── hero.png ├── PowerPeak │ ├── PowerPeakH.py │ ├── PowerPeakO.py │ ├── Readme.md │ └── hero.png ├── WakkaMaulH │ ├── Readme.md │ ├── WakkaMaulH.py │ └── hero.png └── ZeroSum │ ├── Readme.md │ ├── ZeroSum.js │ ├── ZeroSum.py │ └── hero.png ├── Picoctf ├── Readme.md └── hero.png ├── README.md ├── UndefinedWorld ├── Appendix │ ├── Appendix.html │ ├── Readme.md │ └── hero.png ├── AttrItude │ ├── AttrItude.html │ ├── Readme.md │ └── hero.png ├── BinarySearch │ ├── BinarySearch.py │ ├── Readme.md │ └── hero.png ├── ExplosiveSorting │ ├── ExplosiveSorting.py │ ├── Readme.md │ └── hero.png ├── GdCollides │ ├── GdCollides.py │ ├── Readme.md │ └── hero.png ├── HoverAndUnder │ ├── HoverAndUnder.html │ ├── Readme.md │ └── hero.png ├── KithgardsSecret │ ├── KithgardsSecret.py │ ├── Readme.md │ └── hero.png ├── Tabloid │ ├── Readme.md │ ├── Tabloid.html │ └── hero.png └── threes-company │ ├── Readme.md │ ├── hero.png │ └── threes-company.js ├── WebDev1 ├── BigAndTall │ ├── BigAndTall.html │ ├── Readme.md │ └── hero.png ├── BreakingNews │ ├── BreakingNews.html │ ├── Readme.md │ └── hero.png ├── Classy │ ├── Classy.html │ ├── Readme.md │ └── hero.png ├── DangerousDivide │ ├── DangerousDivide.html │ ├── Readme.md │ └── hero.png ├── Headliner │ ├── Headliner.html │ ├── Readme.md │ └── hero.png ├── HumbleBeginnings │ ├── HumbleBeginnings.html │ ├── Readme.md │ └── hero.png ├── IdentificationPlease │ ├── IdentificationPlease.html │ ├── Readme.md │ └── hero.png ├── IllustriousImagery │ ├── IllustriousImagery.html │ ├── Readme.md │ └── hero.png ├── ListingIiaison │ ├── ListingIiaison.html │ ├── Readme.md │ └── hero.png ├── OrdersWanted │ ├── OrdersWanted.html │ ├── Readme.md │ └── hero.png ├── ParagraphParagon │ ├── ParagraphParagon.html │ ├── Readme.md │ └── hero.png ├── StylishIntent │ ├── Readme.md │ ├── StylishIntent.html │ └── hero.png ├── Wanted │ ├── Readme.md │ ├── Wanted.html │ └── hero.png └── WantedPoster │ ├── Readme.md │ ├── WantedPoster.html │ └── hero.png └── WebDev2 ├── Animania ├── Animania.html ├── Readme.md └── hero.png ├── BorderPatrol ├── BorderPatrol.html ├── Readme.md └── hero.png ├── Clickthrough ├── Clickthrough.html ├── Readme.md └── hero.png ├── DisappearingAct ├── DisappearingAct.html ├── Readme.md └── hero.png ├── EventfulSelectors ├── EventfulSelectors.html ├── Readme.md └── hero.png ├── JavascriptAFineMint ├── JavascriptAFineMint.js ├── Readme.md └── hero.png ├── JavascriptBackToBack ├── JavascriptBackToBack.js ├── Readme.md └── hero.png ├── JavascriptFireDancing ├── JavascriptFireDancing.js ├── Readme.md └── hero.png ├── JavascriptLostInTheStacks ├── JavascriptLostInTheStacks.js ├── Readme.md └── hero.png ├── JavascriptManiacMunchkins ├── JavascriptManiacMunchkins.js ├── Readme.md └── hero.png ├── JavascriptMasterOfNames ├── JavascriptMasterOfNames.js ├── Readme.md └── hero.png ├── JavascriptPatrolBuster ├── JavascriptPatrolBuster.js ├── Readme.md └── hero.png ├── JavascriptReturnToThornbushFarm ├── JavascriptReturnToThornbushFarm.js ├── Readme.md └── hero.png ├── JavascriptStillnessInMotion ├── JavascriptStillnessInMotion.js ├── Readme.md └── hero.png ├── JavascriptTrueNames ├── JavascriptTrueNames.js ├── Readme.md └── hero.png ├── MarginalUtility ├── MarginalUtility.html ├── Readme.md └── hero.png ├── PrecisionColoring ├── PrecisionColoring.html ├── Readme.md └── hero.png ├── QueryConfirmed ├── QueryConfirmed.html ├── Readme.md └── hero.png ├── Quizlet ├── Quizlet.html ├── Readme.md └── hero.png ├── SiblingRivalry ├── Readme.md ├── SiblingRivalry.html └── hero.png ├── Toggulation ├── Readme.md ├── Toggulation.html └── hero.png └── TransformativeProperties ├── Readme.md ├── TransformativeProperties.html └── hero.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | *.idea* -------------------------------------------------------------------------------- /Auditions/AuditionLevel/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/AuditionLevel/Readme.md -------------------------------------------------------------------------------- /Auditions/AuditionLevel/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/AuditionLevel/hero.png -------------------------------------------------------------------------------- /Auditions/BattleRoyale/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/BattleRoyale/Readme.md -------------------------------------------------------------------------------- /Auditions/BattleRoyale/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/BattleRoyale/hero.png -------------------------------------------------------------------------------- /Auditions/BecomeALegend/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/BecomeALegend/Readme.md -------------------------------------------------------------------------------- /Auditions/BecomeALegend/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/BecomeALegend/hero.png -------------------------------------------------------------------------------- /Auditions/CashOut/CashOut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/CashOut/CashOut.py -------------------------------------------------------------------------------- /Auditions/CashOut/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/CashOut/Readme.md -------------------------------------------------------------------------------- /Auditions/CashOut/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/CashOut/hero.png -------------------------------------------------------------------------------- /Auditions/CloseEncounters/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/CloseEncounters/hero.png -------------------------------------------------------------------------------- /Auditions/DwanlevelTest1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/DwanlevelTest1/Readme.md -------------------------------------------------------------------------------- /Auditions/DwanlevelTest1/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/DwanlevelTest1/hero.png -------------------------------------------------------------------------------- /Auditions/EpicFlagBattle/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/EpicFlagBattle/Readme.md -------------------------------------------------------------------------------- /Auditions/EpicFlagBattle/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/EpicFlagBattle/hero.png -------------------------------------------------------------------------------- /Auditions/FlagCombat/FlagCombat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/FlagCombat/FlagCombat.py -------------------------------------------------------------------------------- /Auditions/FlagCombat/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/FlagCombat/Readme.md -------------------------------------------------------------------------------- /Auditions/FlagCombat/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/FlagCombat/hero.png -------------------------------------------------------------------------------- /Auditions/ForestPincer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/ForestPincer/Readme.md -------------------------------------------------------------------------------- /Auditions/ForestPincer/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/ForestPincer/hero.png -------------------------------------------------------------------------------- /Auditions/ForestWar/ForestWar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/ForestWar/ForestWar.py -------------------------------------------------------------------------------- /Auditions/ForestWar/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/ForestWar/Readme.md -------------------------------------------------------------------------------- /Auditions/ForestWar/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/ForestWar/hero.png -------------------------------------------------------------------------------- /Auditions/Intervention/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Intervention/Readme.md -------------------------------------------------------------------------------- /Auditions/Intervention/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Intervention/hero.png -------------------------------------------------------------------------------- /Auditions/KitesLanding/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/KitesLanding/Readme.md -------------------------------------------------------------------------------- /Auditions/KitesLanding/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/KitesLanding/hero.png -------------------------------------------------------------------------------- /Auditions/MakeADifference/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/MakeADifference/hero.png -------------------------------------------------------------------------------- /Auditions/OrgeRush/OrgeRush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/OrgeRush/OrgeRush.py -------------------------------------------------------------------------------- /Auditions/OrgeRush/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/OrgeRush/Readme.md -------------------------------------------------------------------------------- /Auditions/OrgeRush/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/OrgeRush/hero.png -------------------------------------------------------------------------------- /Auditions/Prototype01/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Prototype01/Readme.md -------------------------------------------------------------------------------- /Auditions/Prototype01/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Prototype01/hero.png -------------------------------------------------------------------------------- /Auditions/Rampage/Rampage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Rampage/Rampage.py -------------------------------------------------------------------------------- /Auditions/Rampage/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Rampage/Readme.md -------------------------------------------------------------------------------- /Auditions/Rampage/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Rampage/hero.png -------------------------------------------------------------------------------- /Auditions/Testbraenb/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Testbraenb/Readme.md -------------------------------------------------------------------------------- /Auditions/Testbraenb/Testbraenb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Testbraenb/Testbraenb.py -------------------------------------------------------------------------------- /Auditions/Testbraenb/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Testbraenb/hero.png -------------------------------------------------------------------------------- /Auditions/TippingTheTide/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/TippingTheTide/Readme.md -------------------------------------------------------------------------------- /Auditions/TippingTheTide/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/TippingTheTide/hero.png -------------------------------------------------------------------------------- /Auditions/Ttestbraen/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Ttestbraen/Readme.md -------------------------------------------------------------------------------- /Auditions/Ttestbraen/Ttestbraen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Ttestbraen/Ttestbraen.py -------------------------------------------------------------------------------- /Auditions/Ttestbraen/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/Ttestbraen/hero.png -------------------------------------------------------------------------------- /Auditions/TurnTheTide/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/TurnTheTide/Readme.md -------------------------------------------------------------------------------- /Auditions/TurnTheTide/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Auditions/TurnTheTide/hero.png -------------------------------------------------------------------------------- /Deprecated/Brawlwood/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/Brawlwood/Readme.md -------------------------------------------------------------------------------- /Deprecated/Brawlwood/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/Brawlwood/hero.png -------------------------------------------------------------------------------- /Deprecated/DungeonArena/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/DungeonArena/Readme.md -------------------------------------------------------------------------------- /Deprecated/DungeonArena/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/DungeonArena/hero.png -------------------------------------------------------------------------------- /Deprecated/GoldRush/GoldRushH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/GoldRush/GoldRushH.js -------------------------------------------------------------------------------- /Deprecated/GoldRush/GoldRushO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/GoldRush/GoldRushO.js -------------------------------------------------------------------------------- /Deprecated/GoldRush/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/GoldRush/Readme.md -------------------------------------------------------------------------------- /Deprecated/GoldRush/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/GoldRush/hero.png -------------------------------------------------------------------------------- /Deprecated/Greed/GreedHuman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/Greed/GreedHuman.js -------------------------------------------------------------------------------- /Deprecated/Greed/GreedOgres.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/Greed/GreedOgres.js -------------------------------------------------------------------------------- /Deprecated/Greed/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/Greed/Readme.md -------------------------------------------------------------------------------- /Deprecated/Greed/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Deprecated/Greed/hero.png -------------------------------------------------------------------------------- /Deprecated/SkySpanHumanHero/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Desert/AirBridge/AirBridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/AirBridge/AirBridge.py -------------------------------------------------------------------------------- /Desert/AirBridge/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/AirBridge/Readme.md -------------------------------------------------------------------------------- /Desert/AirBridge/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/AirBridge/hero.png -------------------------------------------------------------------------------- /Desert/AlchemicPower/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/AlchemicPower/Readme.md -------------------------------------------------------------------------------- /Desert/AlchemicPower/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/AlchemicPower/hero.png -------------------------------------------------------------------------------- /Desert/ArrayLevelDesert/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ArrayLevelDesert/Readme.md -------------------------------------------------------------------------------- /Desert/ArrayLevelDesert/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ArrayLevelDesert/hero.png -------------------------------------------------------------------------------- /Desert/BaitAndSwitch/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BaitAndSwitch/Readme.md -------------------------------------------------------------------------------- /Desert/BaitAndSwitch/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BaitAndSwitch/hero.png -------------------------------------------------------------------------------- /Desert/BankRaid/BankRaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BankRaid/BankRaid.py -------------------------------------------------------------------------------- /Desert/BankRaid/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BankRaid/Readme.md -------------------------------------------------------------------------------- /Desert/BankRaid/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BankRaid/hero.png -------------------------------------------------------------------------------- /Desert/BashEmAll/BashEmAll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BashEmAll/BashEmAll.py -------------------------------------------------------------------------------- /Desert/BashEmAll/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BashEmAll/Readme.md -------------------------------------------------------------------------------- /Desert/BashEmAll/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BashEmAll/hero.png -------------------------------------------------------------------------------- /Desert/BasinStampede/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BasinStampede/Readme.md -------------------------------------------------------------------------------- /Desert/BasinStampede/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BasinStampede/hero.png -------------------------------------------------------------------------------- /Desert/Bookkeeper/Bookkeeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Bookkeeper/Bookkeeper.py -------------------------------------------------------------------------------- /Desert/Bookkeeper/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Bookkeeper/Readme.md -------------------------------------------------------------------------------- /Desert/Bookkeeper/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Bookkeeper/hero.png -------------------------------------------------------------------------------- /Desert/BrittleMorale/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BrittleMorale/Readme.md -------------------------------------------------------------------------------- /Desert/BrittleMorale/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BrittleMorale/hero.png -------------------------------------------------------------------------------- /Desert/BrownNoise/BrownNoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BrownNoise/BrownNoise.py -------------------------------------------------------------------------------- /Desert/BrownNoise/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BrownNoise/Readme.md -------------------------------------------------------------------------------- /Desert/BrownNoise/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/BrownNoise/hero.png -------------------------------------------------------------------------------- /Desert/CanyonOfStorms/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/CanyonOfStorms/Readme.md -------------------------------------------------------------------------------- /Desert/CanyonOfStorms/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/CanyonOfStorms/hero.png -------------------------------------------------------------------------------- /Desert/ChainOfCommand/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ChainOfCommand/Readme.md -------------------------------------------------------------------------------- /Desert/ChainOfCommand/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ChainOfCommand/hero.png -------------------------------------------------------------------------------- /Desert/ChaseThem/ChaseThem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ChaseThem/ChaseThem.py -------------------------------------------------------------------------------- /Desert/ChaseThem/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ChaseThem/Readme.md -------------------------------------------------------------------------------- /Desert/ChaseThem/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ChaseThem/hero.png -------------------------------------------------------------------------------- /Desert/ClashOfClones/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ClashOfClones/Readme.md -------------------------------------------------------------------------------- /Desert/ClashOfClones/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ClashOfClones/hero.png -------------------------------------------------------------------------------- /Desert/ContinuousAlchemy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ContinuousAlchemy/Readme.md -------------------------------------------------------------------------------- /Desert/ContinuousAlchemy/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ContinuousAlchemy/hero.png -------------------------------------------------------------------------------- /Desert/CoordinatedDefense/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/CoordinatedDefense/hero.png -------------------------------------------------------------------------------- /Desert/Crossroads/Crossroads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Crossroads/Crossroads.py -------------------------------------------------------------------------------- /Desert/Crossroads/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Crossroads/Readme.md -------------------------------------------------------------------------------- /Desert/Crossroads/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Crossroads/hero.png -------------------------------------------------------------------------------- /Desert/CruxOfTheDesert/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/CruxOfTheDesert/Readme.md -------------------------------------------------------------------------------- /Desert/CruxOfTheDesert/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/CruxOfTheDesert/hero.png -------------------------------------------------------------------------------- /Desert/CubicMinefield/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/CubicMinefield/Readme.md -------------------------------------------------------------------------------- /Desert/CubicMinefield/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/CubicMinefield/hero.png -------------------------------------------------------------------------------- /Desert/CursedValley/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/CursedValley/Readme.md -------------------------------------------------------------------------------- /Desert/CursedValley/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/CursedValley/hero.png -------------------------------------------------------------------------------- /Desert/DangerousKey/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DangerousKey/Readme.md -------------------------------------------------------------------------------- /Desert/DangerousKey/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DangerousKey/hero.png -------------------------------------------------------------------------------- /Desert/DecoyDrill/DecoyDrill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DecoyDrill/DecoyDrill.py -------------------------------------------------------------------------------- /Desert/DecoyDrill/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DecoyDrill/Readme.md -------------------------------------------------------------------------------- /Desert/DecoyDrill/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DecoyDrill/hero.png -------------------------------------------------------------------------------- /Desert/DesertCombat/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DesertCombat/Readme.md -------------------------------------------------------------------------------- /Desert/DesertCombat/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DesertCombat/hero.png -------------------------------------------------------------------------------- /Desert/DesertDelta/DesertDelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DesertDelta/DesertDelta.py -------------------------------------------------------------------------------- /Desert/DesertDelta/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DesertDelta/Readme.md -------------------------------------------------------------------------------- /Desert/DesertDelta/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DesertDelta/hero.png -------------------------------------------------------------------------------- /Desert/DiamondDozen/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DiamondDozen/Readme.md -------------------------------------------------------------------------------- /Desert/DiamondDozen/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DiamondDozen/hero.png -------------------------------------------------------------------------------- /Desert/DontRushBeQuiet/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DontRushBeQuiet/Readme.md -------------------------------------------------------------------------------- /Desert/DontRushBeQuiet/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DontRushBeQuiet/hero.png -------------------------------------------------------------------------------- /Desert/DoubleCheek/DoubleCheek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DoubleCheek/DoubleCheek.py -------------------------------------------------------------------------------- /Desert/DoubleCheek/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DoubleCheek/Readme.md -------------------------------------------------------------------------------- /Desert/DoubleCheek/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DoubleCheek/hero.png -------------------------------------------------------------------------------- /Desert/DoubleGaps/DoubleGaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DoubleGaps/DoubleGaps.py -------------------------------------------------------------------------------- /Desert/DoubleGaps/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DoubleGaps/Readme.md -------------------------------------------------------------------------------- /Desert/DoubleGaps/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/DoubleGaps/hero.png -------------------------------------------------------------------------------- /Desert/Dust/Dust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Dust/Dust.py -------------------------------------------------------------------------------- /Desert/Dust/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Dust/Readme.md -------------------------------------------------------------------------------- /Desert/Dust/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Dust/hero.png -------------------------------------------------------------------------------- /Desert/FairBattle/FairBattle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/FairBattle/FairBattle.py -------------------------------------------------------------------------------- /Desert/FairBattle/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/FairBattle/Readme.md -------------------------------------------------------------------------------- /Desert/FairBattle/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/FairBattle/hero.png -------------------------------------------------------------------------------- /Desert/FastAndFurryOus/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/FastAndFurryOus/Readme.md -------------------------------------------------------------------------------- /Desert/FastAndFurryOus/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/FastAndFurryOus/hero.png -------------------------------------------------------------------------------- /Desert/GasAttack/GasAttack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/GasAttack/GasAttack.py -------------------------------------------------------------------------------- /Desert/GasAttack/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/GasAttack/Readme.md -------------------------------------------------------------------------------- /Desert/GasAttack/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/GasAttack/hero.png -------------------------------------------------------------------------------- /Desert/Goalkeeper/Goalkeeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Goalkeeper/Goalkeeper.py -------------------------------------------------------------------------------- /Desert/Goalkeeper/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Goalkeeper/Readme.md -------------------------------------------------------------------------------- /Desert/Goalkeeper/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Goalkeeper/hero.png -------------------------------------------------------------------------------- /Desert/GoldenMirage/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/GoldenMirage/Readme.md -------------------------------------------------------------------------------- /Desert/GoldenMirage/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/GoldenMirage/hero.png -------------------------------------------------------------------------------- /Desert/GuessMyNumber/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/GuessMyNumber/Readme.md -------------------------------------------------------------------------------- /Desert/GuessMyNumber/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/GuessMyNumber/hero.png -------------------------------------------------------------------------------- /Desert/Harrowland/Harrowland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Harrowland/Harrowland.py -------------------------------------------------------------------------------- /Desert/Harrowland/Harrowland2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Harrowland/Harrowland2.py -------------------------------------------------------------------------------- /Desert/Harrowland/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Harrowland/Readme.md -------------------------------------------------------------------------------- /Desert/Harrowland/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Harrowland/hero.png -------------------------------------------------------------------------------- /Desert/HoardingGold/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/HoardingGold/Readme.md -------------------------------------------------------------------------------- /Desert/HoardingGold/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/HoardingGold/hero.png -------------------------------------------------------------------------------- /Desert/HotGate/HotGate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/HotGate/HotGate.py -------------------------------------------------------------------------------- /Desert/HotGate/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/HotGate/Readme.md -------------------------------------------------------------------------------- /Desert/HotGate/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/HotGate/hero.png -------------------------------------------------------------------------------- /Desert/Interception/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Interception/Readme.md -------------------------------------------------------------------------------- /Desert/Interception/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Interception/hero.png -------------------------------------------------------------------------------- /Desert/KeepingTime/KeepingTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/KeepingTime/KeepingTime.py -------------------------------------------------------------------------------- /Desert/KeepingTime/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/KeepingTime/Readme.md -------------------------------------------------------------------------------- /Desert/KeepingTime/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/KeepingTime/hero.png -------------------------------------------------------------------------------- /Desert/KeyTraps/KeyTraps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/KeyTraps/KeyTraps.py -------------------------------------------------------------------------------- /Desert/KeyTraps/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/KeyTraps/Readme.md -------------------------------------------------------------------------------- /Desert/KeyTraps/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/KeyTraps/hero.png -------------------------------------------------------------------------------- /Desert/Lurkers/Lurkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Lurkers/Lurkers.py -------------------------------------------------------------------------------- /Desert/Lurkers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Lurkers/Readme.md -------------------------------------------------------------------------------- /Desert/Lurkers/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Lurkers/hero.png -------------------------------------------------------------------------------- /Desert/MadMaxer/MadMaxer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MadMaxer/MadMaxer.py -------------------------------------------------------------------------------- /Desert/MadMaxer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MadMaxer/Readme.md -------------------------------------------------------------------------------- /Desert/MadMaxer/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MadMaxer/hero.png -------------------------------------------------------------------------------- /Desert/MadMaxerGetsGreedy/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MadMaxerGetsGreedy/hero.png -------------------------------------------------------------------------------- /Desert/MadMaxerRedemption/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MadMaxerRedemption/hero.png -------------------------------------------------------------------------------- /Desert/MadMaxerSellsOut/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MadMaxerSellsOut/Readme.md -------------------------------------------------------------------------------- /Desert/MadMaxerSellsOut/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MadMaxerSellsOut/hero.png -------------------------------------------------------------------------------- /Desert/Marauder/Marauder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Marauder/Marauder.py -------------------------------------------------------------------------------- /Desert/Marauder/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Marauder/Readme.md -------------------------------------------------------------------------------- /Desert/Marauder/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Marauder/hero.png -------------------------------------------------------------------------------- /Desert/MedicalAttention/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MedicalAttention/Readme.md -------------------------------------------------------------------------------- /Desert/MedicalAttention/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MedicalAttention/hero.png -------------------------------------------------------------------------------- /Desert/Minesweeper/Minesweeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Minesweeper/Minesweeper.py -------------------------------------------------------------------------------- /Desert/Minesweeper/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Minesweeper/Readme.md -------------------------------------------------------------------------------- /Desert/Minesweeper/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Minesweeper/hero.png -------------------------------------------------------------------------------- /Desert/MirageMaker/MirageMaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MirageMaker/MirageMaker.py -------------------------------------------------------------------------------- /Desert/MirageMaker/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MirageMaker/Readme.md -------------------------------------------------------------------------------- /Desert/MirageMaker/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MirageMaker/hero.png -------------------------------------------------------------------------------- /Desert/MushroomNoise/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MushroomNoise/Readme.md -------------------------------------------------------------------------------- /Desert/MushroomNoise/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/MushroomNoise/hero.png -------------------------------------------------------------------------------- /Desert/NoPainNoGain/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/NoPainNoGain/Readme.md -------------------------------------------------------------------------------- /Desert/NoPainNoGain/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/NoPainNoGain/hero.png -------------------------------------------------------------------------------- /Desert/Oasis/Oasis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Oasis/Oasis.py -------------------------------------------------------------------------------- /Desert/Oasis/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Oasis/Readme.md -------------------------------------------------------------------------------- /Desert/Oasis/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Oasis/hero.png -------------------------------------------------------------------------------- /Desert/OddSandstorm/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/OddSandstorm/Readme.md -------------------------------------------------------------------------------- /Desert/OddSandstorm/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/OddSandstorm/hero.png -------------------------------------------------------------------------------- /Desert/OlympicRace/OlympicRace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/OlympicRace/OlympicRace.py -------------------------------------------------------------------------------- /Desert/OlympicRace/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/OlympicRace/Readme.md -------------------------------------------------------------------------------- /Desert/OlympicRace/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/OlympicRace/hero.png -------------------------------------------------------------------------------- /Desert/OperationKilldeer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/OperationKilldeer/Readme.md -------------------------------------------------------------------------------- /Desert/OperationKilldeer/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/OperationKilldeer/hero.png -------------------------------------------------------------------------------- /Desert/PetAdjutant/PetAdjutant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PetAdjutant/PetAdjutant.py -------------------------------------------------------------------------------- /Desert/PetAdjutant/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PetAdjutant/Readme.md -------------------------------------------------------------------------------- /Desert/PetEngineer/PetEngineer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PetEngineer/PetEngineer.py -------------------------------------------------------------------------------- /Desert/PetEngineer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PetEngineer/Readme.md -------------------------------------------------------------------------------- /Desert/PetEngineer/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PetEngineer/hero.png -------------------------------------------------------------------------------- /Desert/PetTranslator/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PetTranslator/Readme.md -------------------------------------------------------------------------------- /Desert/PetTranslator/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PetTranslator/hero.png -------------------------------------------------------------------------------- /Desert/PiedPiper/PiedPiper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PiedPiper/PiedPiper.py -------------------------------------------------------------------------------- /Desert/PiedPiper/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PiedPiper/Readme.md -------------------------------------------------------------------------------- /Desert/PiedPiper/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PiedPiper/hero.png -------------------------------------------------------------------------------- /Desert/PoliceRaid/PoliceRaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PoliceRaid/PoliceRaid.py -------------------------------------------------------------------------------- /Desert/PoliceRaid/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PoliceRaid/Readme.md -------------------------------------------------------------------------------- /Desert/PoliceRaid/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/PoliceRaid/hero.png -------------------------------------------------------------------------------- /Desert/RecruitingQueue/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/RecruitingQueue/Readme.md -------------------------------------------------------------------------------- /Desert/RecruitingQueue/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/RecruitingQueue/hero.png -------------------------------------------------------------------------------- /Desert/SacredGrove/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SacredGrove/Readme.md -------------------------------------------------------------------------------- /Desert/SacredGrove/SacredGrove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SacredGrove/SacredGrove.py -------------------------------------------------------------------------------- /Desert/SacredGrove/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SacredGrove/hero.png -------------------------------------------------------------------------------- /Desert/SacredStatue/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SacredStatue/Readme.md -------------------------------------------------------------------------------- /Desert/SacredStatue/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SacredStatue/hero.png -------------------------------------------------------------------------------- /Desert/SafetyBlanket/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SafetyBlanket/Readme.md -------------------------------------------------------------------------------- /Desert/SafetyBlanket/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SafetyBlanket/hero.png -------------------------------------------------------------------------------- /Desert/SandMushrooms/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SandMushrooms/Readme.md -------------------------------------------------------------------------------- /Desert/SandMushrooms/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SandMushrooms/hero.png -------------------------------------------------------------------------------- /Desert/SandSnakes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SandSnakes/Readme.md -------------------------------------------------------------------------------- /Desert/SandSnakes/SandSnakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SandSnakes/SandSnakes.py -------------------------------------------------------------------------------- /Desert/SandSnakes/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SandSnakes/hero.png -------------------------------------------------------------------------------- /Desert/SarvenBrawl/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenBrawl/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenBrawl/SarvenBrawl1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenBrawl/SarvenBrawl1.py -------------------------------------------------------------------------------- /Desert/SarvenBrawl/SarvenBrawl2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenBrawl/SarvenBrawl2.py -------------------------------------------------------------------------------- /Desert/SarvenBrawl/SarvenBrawl3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenBrawl/SarvenBrawl3.py -------------------------------------------------------------------------------- /Desert/SarvenBrawl/SarvenBrawl4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenBrawl/SarvenBrawl4.py -------------------------------------------------------------------------------- /Desert/SarvenBrawl/SarvenBrawl5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenBrawl/SarvenBrawl5.py -------------------------------------------------------------------------------- /Desert/SarvenBrawl/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenBrawl/hero.png -------------------------------------------------------------------------------- /Desert/SarvenGaps/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenGaps/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenGaps/SarvenGaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenGaps/SarvenGaps.py -------------------------------------------------------------------------------- /Desert/SarvenGaps/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenGaps/hero.png -------------------------------------------------------------------------------- /Desert/SarvenOutpost/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenOutpost/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenOutpost/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenOutpost/hero.png -------------------------------------------------------------------------------- /Desert/SarvenRescue/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenRescue/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenRescue/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenRescue/hero.png -------------------------------------------------------------------------------- /Desert/SarvenRoad/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenRoad/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenRoad/SarvenRoad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenRoad/SarvenRoad.py -------------------------------------------------------------------------------- /Desert/SarvenRoad/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenRoad/hero.png -------------------------------------------------------------------------------- /Desert/SarvenSavior/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSavior/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenSavior/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSavior/hero.png -------------------------------------------------------------------------------- /Desert/SarvenSentry/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSentry/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenSentry/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSentry/hero.png -------------------------------------------------------------------------------- /Desert/SarvenShepherd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenShepherd/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenShepherd/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenShepherd/hero.png -------------------------------------------------------------------------------- /Desert/SarvenSiege/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSiege/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenSiege/SarvenSiege.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSiege/SarvenSiege.py -------------------------------------------------------------------------------- /Desert/SarvenSiege/SarvenSiege2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSiege/SarvenSiege2.py -------------------------------------------------------------------------------- /Desert/SarvenSiege/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSiege/hero.png -------------------------------------------------------------------------------- /Desert/SarvenSum/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSum/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenSum/SarvenSum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSum/SarvenSum.py -------------------------------------------------------------------------------- /Desert/SarvenSum/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenSum/hero.png -------------------------------------------------------------------------------- /Desert/SarvenTreasure/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenTreasure/Readme.md -------------------------------------------------------------------------------- /Desert/SarvenTreasure/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SarvenTreasure/hero.png -------------------------------------------------------------------------------- /Desert/ScyllaAndCharybdis/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ScyllaAndCharybdis/hero.png -------------------------------------------------------------------------------- /Desert/SecondGem/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SecondGem/Readme.md -------------------------------------------------------------------------------- /Desert/SecondGem/SecondGem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SecondGem/SecondGem.py -------------------------------------------------------------------------------- /Desert/SecondGem/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SecondGem/hero.png -------------------------------------------------------------------------------- /Desert/ShineGetter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ShineGetter/Readme.md -------------------------------------------------------------------------------- /Desert/ShineGetter/ShineGetter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ShineGetter/ShineGetter.py -------------------------------------------------------------------------------- /Desert/ShineGetter/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ShineGetter/hero.png -------------------------------------------------------------------------------- /Desert/SpinachPower/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SpinachPower/Readme.md -------------------------------------------------------------------------------- /Desert/SpinachPower/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/SpinachPower/hero.png -------------------------------------------------------------------------------- /Desert/StrandedInTheDunes/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/StrandedInTheDunes/hero.png -------------------------------------------------------------------------------- /Desert/TeamWork/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TeamWork/Readme.md -------------------------------------------------------------------------------- /Desert/TeamWork/TeamWork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TeamWork/TeamWork.py -------------------------------------------------------------------------------- /Desert/TeamWork/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TeamWork/hero.png -------------------------------------------------------------------------------- /Desert/TheDunes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TheDunes/Readme.md -------------------------------------------------------------------------------- /Desert/TheDunes/TheDunes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TheDunes/TheDunes.py -------------------------------------------------------------------------------- /Desert/TheDunes/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TheDunes/hero.png -------------------------------------------------------------------------------- /Desert/TheMightySandYak/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TheMightySandYak/Readme.md -------------------------------------------------------------------------------- /Desert/TheMightySandYak/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TheMightySandYak/hero.png -------------------------------------------------------------------------------- /Desert/TheTrials/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TheTrials/Readme.md -------------------------------------------------------------------------------- /Desert/TheTrials/TheTrials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TheTrials/TheTrials.py -------------------------------------------------------------------------------- /Desert/TheTrials/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TheTrials/hero.png -------------------------------------------------------------------------------- /Desert/Thunderhooves/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Thunderhooves/Readme.md -------------------------------------------------------------------------------- /Desert/Thunderhooves/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Thunderhooves/hero.png -------------------------------------------------------------------------------- /Desert/TiresomeGcd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TiresomeGcd/Readme.md -------------------------------------------------------------------------------- /Desert/TiresomeGcd/TiresomeGcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TiresomeGcd/TiresomeGcd.py -------------------------------------------------------------------------------- /Desert/TiresomeGcd/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/TiresomeGcd/hero.png -------------------------------------------------------------------------------- /Desert/ValleyOfTheKing/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ValleyOfTheKing/Readme.md -------------------------------------------------------------------------------- /Desert/ValleyOfTheKing/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ValleyOfTheKing/hero.png -------------------------------------------------------------------------------- /Desert/WanderingSouls/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/WanderingSouls/Readme.md -------------------------------------------------------------------------------- /Desert/WanderingSouls/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/WanderingSouls/hero.png -------------------------------------------------------------------------------- /Desert/WeakestQuickest/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/WeakestQuickest/Readme.md -------------------------------------------------------------------------------- /Desert/WeakestQuickest/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/WeakestQuickest/hero.png -------------------------------------------------------------------------------- /Desert/WishingWell/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/WishingWell/Readme.md -------------------------------------------------------------------------------- /Desert/WishingWell/WishingWell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/WishingWell/WishingWell.py -------------------------------------------------------------------------------- /Desert/WishingWell/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/WishingWell/hero.png -------------------------------------------------------------------------------- /Desert/YakHeist/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/YakHeist/Readme.md -------------------------------------------------------------------------------- /Desert/YakHeist/YakHeist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/YakHeist/YakHeist.py -------------------------------------------------------------------------------- /Desert/YakHeist/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/YakHeist/hero.png -------------------------------------------------------------------------------- /Desert/Yakstraction/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Yakstraction/Readme.md -------------------------------------------------------------------------------- /Desert/Yakstraction/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/Yakstraction/hero.png -------------------------------------------------------------------------------- /Desert/ZigZagAndZoom/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ZigZagAndZoom/Readme.md -------------------------------------------------------------------------------- /Desert/ZigZagAndZoom/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/ZigZagAndZoom/hero.png -------------------------------------------------------------------------------- /Desert/РunterМalley/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/РunterМalley/Readme.md -------------------------------------------------------------------------------- /Desert/РunterМalley/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Desert/РunterМalley/hero.png -------------------------------------------------------------------------------- /DungeonsKitgard/Banefire/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/DungeonsKitgard/Banefire/Readme.md -------------------------------------------------------------------------------- /DungeonsKitgard/Banefire/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/DungeonsKitgard/Banefire/hero.png -------------------------------------------------------------------------------- /DungeonsKitgard/Breakout/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/DungeonsKitgard/Breakout/Readme.md -------------------------------------------------------------------------------- /DungeonsKitgard/Breakout/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/DungeonsKitgard/Breakout/hero.png -------------------------------------------------------------------------------- /DungeonsKitgard/CavernSurvival/Readme.md: -------------------------------------------------------------------------------- 1 | Solution in multilayer section -------------------------------------------------------------------------------- /DungeonsKitgard/DreadDoor/DreadDoor.py: -------------------------------------------------------------------------------- 1 | while True: 2 | hero.attack("Door") 3 | -------------------------------------------------------------------------------- /DungeonsKitgard/DreadDoor/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/DungeonsKitgard/DreadDoor/hero.png -------------------------------------------------------------------------------- /DungeonsKitgard/EnemyMine/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/DungeonsKitgard/EnemyMine/hero.png -------------------------------------------------------------------------------- /DungeonsKitgard/PongPong/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/DungeonsKitgard/PongPong/Readme.md -------------------------------------------------------------------------------- /DungeonsKitgard/PongPong/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/DungeonsKitgard/PongPong/hero.png -------------------------------------------------------------------------------- /DungeonsKitgard/TrueNames/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/DungeonsKitgard/TrueNames/hero.png -------------------------------------------------------------------------------- /DungeonsKitgard/WakkaMaul/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/DungeonsKitgard/WakkaMaul/hero.png -------------------------------------------------------------------------------- /Forest/AFineMint/AFineMint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/AFineMint/AFineMint.py -------------------------------------------------------------------------------- /Forest/AFineMint/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/AFineMint/Readme.md -------------------------------------------------------------------------------- /Forest/AFineMint/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/AFineMint/hero.png -------------------------------------------------------------------------------- /Forest/AgrippaRefactored/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/AgrippaRefactored/Readme.md -------------------------------------------------------------------------------- /Forest/AgrippaRefactored/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/AgrippaRefactored/hero.png -------------------------------------------------------------------------------- /Forest/AgrippaReturned/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/AgrippaReturned/Readme.md -------------------------------------------------------------------------------- /Forest/AgrippaReturned/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/AgrippaReturned/hero.png -------------------------------------------------------------------------------- /Forest/Airdrop/Airdrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Airdrop/Airdrop.py -------------------------------------------------------------------------------- /Forest/Airdrop/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Airdrop/Readme.md -------------------------------------------------------------------------------- /Forest/Airdrop/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Airdrop/hero.png -------------------------------------------------------------------------------- /Forest/Apocalypse/Apocalypse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Apocalypse/Apocalypse.py -------------------------------------------------------------------------------- /Forest/Apocalypse/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Apocalypse/Readme.md -------------------------------------------------------------------------------- /Forest/Apocalypse/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Apocalypse/hero.png -------------------------------------------------------------------------------- /Forest/ArcaneAlly/ArcaneAlly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ArcaneAlly/ArcaneAlly.py -------------------------------------------------------------------------------- /Forest/ArcaneAlly/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ArcaneAlly/Readme.md -------------------------------------------------------------------------------- /Forest/ArcaneAlly/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ArcaneAlly/hero.png -------------------------------------------------------------------------------- /Forest/ArrowproofWolf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ArrowproofWolf/Readme.md -------------------------------------------------------------------------------- /Forest/ArrowproofWolf/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ArrowproofWolf/hero.png -------------------------------------------------------------------------------- /Forest/BackToBack/BackToBack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackToBack/BackToBack.py -------------------------------------------------------------------------------- /Forest/BackToBack/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackToBack/Readme.md -------------------------------------------------------------------------------- /Forest/BackToBack/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackToBack/hero.png -------------------------------------------------------------------------------- /Forest/BackwoodsAmbush/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsAmbush/Readme.md -------------------------------------------------------------------------------- /Forest/BackwoodsAmbush/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsAmbush/hero.png -------------------------------------------------------------------------------- /Forest/BackwoodsAmbushA/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsAmbushA/Readme.md -------------------------------------------------------------------------------- /Forest/BackwoodsAmbushA/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsAmbushA/hero.png -------------------------------------------------------------------------------- /Forest/BackwoodsBrawl/BackwoodsBrawl-Current.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Forest/BackwoodsBrawl/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsBrawl/Readme.md -------------------------------------------------------------------------------- /Forest/BackwoodsBrawl/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsBrawl/hero.png -------------------------------------------------------------------------------- /Forest/BackwoodsBrawl/strike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsBrawl/strike.png -------------------------------------------------------------------------------- /Forest/BackwoodsBuddy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsBuddy/Readme.md -------------------------------------------------------------------------------- /Forest/BackwoodsBuddy/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsBuddy/hero.png -------------------------------------------------------------------------------- /Forest/BackwoodsFork/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsFork/Readme.md -------------------------------------------------------------------------------- /Forest/BackwoodsFork/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsFork/hero.png -------------------------------------------------------------------------------- /Forest/BackwoodsStandoff/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsStandoff/Readme.md -------------------------------------------------------------------------------- /Forest/BackwoodsStandoff/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsStandoff/hero.png -------------------------------------------------------------------------------- /Forest/BackwoodsStandoffA/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsStandoffA/hero.png -------------------------------------------------------------------------------- /Forest/BackwoodsStandoffB/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsStandoffB/hero.png -------------------------------------------------------------------------------- /Forest/BackwoodsTreasure/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsTreasure/Readme.md -------------------------------------------------------------------------------- /Forest/BackwoodsTreasure/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BackwoodsTreasure/hero.png -------------------------------------------------------------------------------- /Forest/BadNeighborhood/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BadNeighborhood/Readme.md -------------------------------------------------------------------------------- /Forest/BadNeighborhood/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BadNeighborhood/hero.png -------------------------------------------------------------------------------- /Forest/BlindDistance/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BlindDistance/Readme.md -------------------------------------------------------------------------------- /Forest/BlindDistance/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BlindDistance/hero.png -------------------------------------------------------------------------------- /Forest/Bonemender/Bonemender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Bonemender/Bonemender.py -------------------------------------------------------------------------------- /Forest/Bonemender/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Bonemender/Readme.md -------------------------------------------------------------------------------- /Forest/Bonemender/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Bonemender/hero.png -------------------------------------------------------------------------------- /Forest/BoomAndBust/BoomAndBust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BoomAndBust/BoomAndBust.py -------------------------------------------------------------------------------- /Forest/BoomAndBust/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BoomAndBust/Readme.md -------------------------------------------------------------------------------- /Forest/BoomAndBust/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BoomAndBust/hero.png -------------------------------------------------------------------------------- /Forest/BoulderWoods/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BoulderWoods/Readme.md -------------------------------------------------------------------------------- /Forest/BoulderWoods/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BoulderWoods/hero.png -------------------------------------------------------------------------------- /Forest/BrawlerHunt/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BrawlerHunt/Readme.md -------------------------------------------------------------------------------- /Forest/BrawlerHunt/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BrawlerHunt/hero.png -------------------------------------------------------------------------------- /Forest/BuddysName/BuddysName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BuddysName/BuddysName.py -------------------------------------------------------------------------------- /Forest/BuddysName/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BuddysName/Readme.md -------------------------------------------------------------------------------- /Forest/BuddysName/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BuddysName/hero.png -------------------------------------------------------------------------------- /Forest/BuddysNameA/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BuddysNameA/Readme.md -------------------------------------------------------------------------------- /Forest/BuddysNameA/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BuddysNameA/hero.png -------------------------------------------------------------------------------- /Forest/BuddysNameB/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BuddysNameB/Readme.md -------------------------------------------------------------------------------- /Forest/BuddysNameB/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BuddysNameB/hero.png -------------------------------------------------------------------------------- /Forest/BurlboleGrove/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BurlboleGrove/Readme.md -------------------------------------------------------------------------------- /Forest/BurlboleGrove/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/BurlboleGrove/hero.png -------------------------------------------------------------------------------- /Forest/CatchMe/CatchMe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CatchMe/CatchMe.py -------------------------------------------------------------------------------- /Forest/CatchMe/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CatchMe/Readme.md -------------------------------------------------------------------------------- /Forest/CatchMe/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CatchMe/hero.png -------------------------------------------------------------------------------- /Forest/Chameleons/Chameleons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Chameleons/Chameleons.py -------------------------------------------------------------------------------- /Forest/Chameleons/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Chameleons/Readme.md -------------------------------------------------------------------------------- /Forest/Chameleons/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Chameleons/hero.png -------------------------------------------------------------------------------- /Forest/ClosedCrossroad/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ClosedCrossroad/Readme.md -------------------------------------------------------------------------------- /Forest/ClosedCrossroad/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ClosedCrossroad/hero.png -------------------------------------------------------------------------------- /Forest/CoinHunter/CoinHunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CoinHunter/CoinHunter.py -------------------------------------------------------------------------------- /Forest/CoinHunter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CoinHunter/Readme.md -------------------------------------------------------------------------------- /Forest/CoinHunter/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CoinHunter/hero.png -------------------------------------------------------------------------------- /Forest/CoinMania/CoinMania.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CoinMania/CoinMania.py -------------------------------------------------------------------------------- /Forest/CoinMania/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CoinMania/Readme.md -------------------------------------------------------------------------------- /Forest/CoinMania/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CoinMania/hero.png -------------------------------------------------------------------------------- /Forest/Coincrumbs/Coincrumbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Coincrumbs/Coincrumbs.py -------------------------------------------------------------------------------- /Forest/Coincrumbs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Coincrumbs/Readme.md -------------------------------------------------------------------------------- /Forest/Coincrumbs/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Coincrumbs/hero.png -------------------------------------------------------------------------------- /Forest/Coinucopia/Coinucopia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Coinucopia/Coinucopia.py -------------------------------------------------------------------------------- /Forest/Coinucopia/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Coinucopia/Readme.md -------------------------------------------------------------------------------- /Forest/Coinucopia/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Coinucopia/hero.png -------------------------------------------------------------------------------- /Forest/CopperMeadows/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CopperMeadows/Readme.md -------------------------------------------------------------------------------- /Forest/CopperMeadows/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/CopperMeadows/hero.png -------------------------------------------------------------------------------- /Forest/DeadlyPursuit/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/DeadlyPursuit/Readme.md -------------------------------------------------------------------------------- /Forest/DeadlyPursuit/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/DeadlyPursuit/hero.png -------------------------------------------------------------------------------- /Forest/DejaBrew/DejaBrew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/DejaBrew/DejaBrew.py -------------------------------------------------------------------------------- /Forest/DejaBrew/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/DejaBrew/Readme.md -------------------------------------------------------------------------------- /Forest/DoomGlade/DoomGlade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/DoomGlade/DoomGlade.py -------------------------------------------------------------------------------- /Forest/DoomGlade/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/DoomGlade/Readme.md -------------------------------------------------------------------------------- /Forest/DropTheFlag/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/DropTheFlag/Readme.md -------------------------------------------------------------------------------- /Forest/DuelingGrounds/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/DuelingGrounds/Readme.md -------------------------------------------------------------------------------- /Forest/EagleEye/EagleEye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/EagleEye/EagleEye.py -------------------------------------------------------------------------------- /Forest/EagleEye/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/EagleEye/Readme.md -------------------------------------------------------------------------------- /Forest/Elseweyr/Elseweyr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Elseweyr/Elseweyr.py -------------------------------------------------------------------------------- /Forest/Elseweyr/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Elseweyr/Readme.md -------------------------------------------------------------------------------- /Forest/EndangeredBurl/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/EndangeredBurl/Readme.md -------------------------------------------------------------------------------- /Forest/ForestEvasion/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ForestEvasion/Readme.md -------------------------------------------------------------------------------- /Forest/ForestJogging/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ForestJogging/Readme.md -------------------------------------------------------------------------------- /Forest/ForestMiners/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ForestMiners/Readme.md -------------------------------------------------------------------------------- /Forest/ForestShadow/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ForestShadow/Readme.md -------------------------------------------------------------------------------- /Forest/FriendAndFoe/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/FriendAndFoe/Readme.md -------------------------------------------------------------------------------- /Forest/GemsOrDeath/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/GemsOrDeath/Readme.md -------------------------------------------------------------------------------- /Forest/GoFetch/GoFetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/GoFetch/GoFetch.py -------------------------------------------------------------------------------- /Forest/GoFetch/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/GoFetch/Readme.md -------------------------------------------------------------------------------- /Forest/GreedTraps/GreedTraps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/GreedTraps/GreedTraps.py -------------------------------------------------------------------------------- /Forest/GreedTraps/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/GreedTraps/Readme.md -------------------------------------------------------------------------------- /Forest/GuardDog/GuardDog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/GuardDog/GuardDog.py -------------------------------------------------------------------------------- /Forest/GuardDog/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/GuardDog/Readme.md -------------------------------------------------------------------------------- /Forest/HarvestTime/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/HarvestTime/Readme.md -------------------------------------------------------------------------------- /Forest/HitAndFreeze/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/HitAndFreeze/Readme.md -------------------------------------------------------------------------------- /Forest/IfStravaganza/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/IfStravaganza/Readme.md -------------------------------------------------------------------------------- /Forest/IndTheTrap/IndTheTrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/IndTheTrap/IndTheTrap.py -------------------------------------------------------------------------------- /Forest/IndTheTrap/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/IndTheTrap/Readme.md -------------------------------------------------------------------------------- /Forest/LogicalCircle/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/LogicalCircle/Readme.md -------------------------------------------------------------------------------- /Forest/LogicalPath/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/LogicalPath/Readme.md -------------------------------------------------------------------------------- /Forest/LongRoad/LongRoad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/LongRoad/LongRoad.py -------------------------------------------------------------------------------- /Forest/LongRoad/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/LongRoad/Readme.md -------------------------------------------------------------------------------- /Forest/LostViking/LostViking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/LostViking/LostViking.py -------------------------------------------------------------------------------- /Forest/LostViking/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/LostViking/Readme.md -------------------------------------------------------------------------------- /Forest/MagicExam/MagicExam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/MagicExam/MagicExam.py -------------------------------------------------------------------------------- /Forest/MagicExam/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/MagicExam/Readme.md -------------------------------------------------------------------------------- /Forest/MailInterceptor/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/MailInterceptor/Readme.md -------------------------------------------------------------------------------- /Forest/ManiacMunchkins/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ManiacMunchkins/Readme.md -------------------------------------------------------------------------------- /Forest/MetalDetector/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/MetalDetector/Readme.md -------------------------------------------------------------------------------- /Forest/MindTheTrap/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/MindTheTrap/Readme.md -------------------------------------------------------------------------------- /Forest/MunchkinHarvest/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/MunchkinHarvest/Readme.md -------------------------------------------------------------------------------- /Forest/MunchkinSwarm/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/MunchkinSwarm/Readme.md -------------------------------------------------------------------------------- /Forest/NineGems/NineGems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/NineGems/NineGems.py -------------------------------------------------------------------------------- /Forest/NineGems/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/NineGems/Readme.md -------------------------------------------------------------------------------- /Forest/OgreEncampment/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/OgreEncampment/Readme.md -------------------------------------------------------------------------------- /Forest/OneWrongStep/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/OneWrongStep/Readme.md -------------------------------------------------------------------------------- /Forest/PassingThrough/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/PassingThrough/Readme.md -------------------------------------------------------------------------------- /Forest/PatrolBuster/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/PatrolBuster/Readme.md -------------------------------------------------------------------------------- /Forest/PatrolBusterA/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/PatrolBusterA/Readme.md -------------------------------------------------------------------------------- /Forest/PeekABoom/PeekABoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/PeekABoom/PeekABoom.py -------------------------------------------------------------------------------- /Forest/PeekABoom/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/PeekABoom/Readme.md -------------------------------------------------------------------------------- /Forest/PetQuiz/PetQuiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/PetQuiz/PetQuiz.py -------------------------------------------------------------------------------- /Forest/PetQuiz/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/PetQuiz/Readme.md -------------------------------------------------------------------------------- /Forest/PhdKitty/PhdKitty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/PhdKitty/PhdKitty.py -------------------------------------------------------------------------------- /Forest/PhdKitty/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/PhdKitty/Readme.md -------------------------------------------------------------------------------- /Forest/PicnicBuster/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/PicnicBuster/Readme.md -------------------------------------------------------------------------------- /Forest/RangeFinder/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/RangeFinder/Readme.md -------------------------------------------------------------------------------- /Forest/RichForager/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/RichForager/Readme.md -------------------------------------------------------------------------------- /Forest/SaltedEarth/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/SaltedEarth/Readme.md -------------------------------------------------------------------------------- /Forest/SeekAndHide/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/SeekAndHide/Readme.md -------------------------------------------------------------------------------- /Forest/ShieldRush/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ShieldRush/Readme.md -------------------------------------------------------------------------------- /Forest/ShieldRush/ShieldRush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ShieldRush/ShieldRush.py -------------------------------------------------------------------------------- /Forest/Shrapnel/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Shrapnel/Readme.md -------------------------------------------------------------------------------- /Forest/Shrapnel/Shrapnel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Shrapnel/Shrapnel.py -------------------------------------------------------------------------------- /Forest/SignalCorpse/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/SignalCorpse/Readme.md -------------------------------------------------------------------------------- /Forest/SpringThunder/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/SpringThunder/Readme.md -------------------------------------------------------------------------------- /Forest/StarShower/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/StarShower/Readme.md -------------------------------------------------------------------------------- /Forest/StarShower/StarShower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/StarShower/StarShower.py -------------------------------------------------------------------------------- /Forest/SwiftDagger/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/SwiftDagger/Readme.md -------------------------------------------------------------------------------- /Forest/TacticalTiming/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TacticalTiming/Readme.md -------------------------------------------------------------------------------- /Forest/Taunting/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Taunting/Readme.md -------------------------------------------------------------------------------- /Forest/Taunting/Taunting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Taunting/Taunting.py -------------------------------------------------------------------------------- /Forest/TeleportLasso/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TeleportLasso/Readme.md -------------------------------------------------------------------------------- /Forest/TheOneWizard/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TheOneWizard/Readme.md -------------------------------------------------------------------------------- /Forest/TheOneWizard/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TheOneWizard/hero.png -------------------------------------------------------------------------------- /Forest/TheWizardsDoor/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TheWizardsDoor/Readme.md -------------------------------------------------------------------------------- /Forest/TheWizardsHaunt/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TheWizardsHaunt/Readme.md -------------------------------------------------------------------------------- /Forest/TheWizardsPlane/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TheWizardsPlane/Readme.md -------------------------------------------------------------------------------- /Forest/ThornbushFarm/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ThornbushFarm/Readme.md -------------------------------------------------------------------------------- /Forest/ThumbBiter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ThumbBiter/Readme.md -------------------------------------------------------------------------------- /Forest/ThumbBiter/ThumbBiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/ThumbBiter/ThumbBiter.py -------------------------------------------------------------------------------- /Forest/TombGhost/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TombGhost/Readme.md -------------------------------------------------------------------------------- /Forest/TombGhost/TombGhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TombGhost/TombGhost.py -------------------------------------------------------------------------------- /Forest/TombRaider/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TombRaider/Readme.md -------------------------------------------------------------------------------- /Forest/TombRaider/TombRaider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TombRaider/TombRaider.py -------------------------------------------------------------------------------- /Forest/TouchOfDeath/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/TouchOfDeath/Readme.md -------------------------------------------------------------------------------- /Forest/UnfairSupport/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/UnfairSupport/Readme.md -------------------------------------------------------------------------------- /Forest/UsualDay/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/UsualDay/Readme.md -------------------------------------------------------------------------------- /Forest/UsualDay/UsualDay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/UsualDay/UsualDay.py -------------------------------------------------------------------------------- /Forest/VillageChampion/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/VillageChampion/Readme.md -------------------------------------------------------------------------------- /Forest/VillageGuard/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/VillageGuard/Readme.md -------------------------------------------------------------------------------- /Forest/VillageRover/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/VillageRover/Readme.md -------------------------------------------------------------------------------- /Forest/VillageWarder/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/VillageWarder/Readme.md -------------------------------------------------------------------------------- /Forest/WhiteRabbit/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/WhiteRabbit/Readme.md -------------------------------------------------------------------------------- /Forest/WildHorses/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/WildHorses/Readme.md -------------------------------------------------------------------------------- /Forest/WildHorses/WildHorses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/WildHorses/WildHorses.py -------------------------------------------------------------------------------- /Forest/WindingTrail/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/WindingTrail/Readme.md -------------------------------------------------------------------------------- /Forest/Wonderglade/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/Wonderglade/Readme.md -------------------------------------------------------------------------------- /Forest/WoodlandCleaver/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/WoodlandCleaver/Readme.md -------------------------------------------------------------------------------- /Forest/WoodlandCubbies/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Forest/WoodlandCubbies/Readme.md -------------------------------------------------------------------------------- /Functions/Mimic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Functions/Mimic.py -------------------------------------------------------------------------------- /Functions/Necromancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Functions/Necromancer.py -------------------------------------------------------------------------------- /Functions/Puma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Functions/Puma.py -------------------------------------------------------------------------------- /Functions/RiticCold.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Functions/pathClear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Functions/pathClear.py -------------------------------------------------------------------------------- /GameDev1/AMazeIng/AMazeIng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/AMazeIng/AMazeIng.py -------------------------------------------------------------------------------- /GameDev1/AMazeIng/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/AMazeIng/Readme.md -------------------------------------------------------------------------------- /GameDev1/AMazeIng/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/AMazeIng/hero.png -------------------------------------------------------------------------------- /GameDev1/ClickGait/ClickGait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/ClickGait/ClickGait.py -------------------------------------------------------------------------------- /GameDev1/ClickGait/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/ClickGait/Readme.md -------------------------------------------------------------------------------- /GameDev1/ClickGait/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/ClickGait/hero.png -------------------------------------------------------------------------------- /GameDev1/CrushingIt/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/CrushingIt/Readme.md -------------------------------------------------------------------------------- /GameDev1/CrushingIt/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/CrushingIt/hero.png -------------------------------------------------------------------------------- /GameDev1/GameGrove/GameGrove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/GameGrove/GameGrove.py -------------------------------------------------------------------------------- /GameDev1/GameGrove/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/GameGrove/Readme.md -------------------------------------------------------------------------------- /GameDev1/GameGrove/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/GameGrove/hero.png -------------------------------------------------------------------------------- /GameDev1/Gameville/Gameville.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/Gameville/Gameville.py -------------------------------------------------------------------------------- /GameDev1/Gameville/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/Gameville/Readme.md -------------------------------------------------------------------------------- /GameDev1/Gameville/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/Gameville/hero.png -------------------------------------------------------------------------------- /GameDev1/Gemtacular/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/Gemtacular/Readme.md -------------------------------------------------------------------------------- /GameDev1/Gemtacular/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/Gemtacular/hero.png -------------------------------------------------------------------------------- /GameDev1/GiveAndTake/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/GiveAndTake/Readme.md -------------------------------------------------------------------------------- /GameDev1/GiveAndTake/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/GiveAndTake/hero.png -------------------------------------------------------------------------------- /GameDev1/HedgeMagic/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/HedgeMagic/Readme.md -------------------------------------------------------------------------------- /GameDev1/HedgeMagic/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/HedgeMagic/hero.png -------------------------------------------------------------------------------- /GameDev1/HerosJourney/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/HerosJourney/Readme.md -------------------------------------------------------------------------------- /GameDev1/HerosJourney/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/HerosJourney/hero.png -------------------------------------------------------------------------------- /GameDev1/TabulaRasa/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/TabulaRasa/Readme.md -------------------------------------------------------------------------------- /GameDev1/TabulaRasa/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/TabulaRasa/hero.png -------------------------------------------------------------------------------- /GameDev1/ThemBones/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/ThemBones/Readme.md -------------------------------------------------------------------------------- /GameDev1/ThemBones/ThemBones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/ThemBones/ThemBones.py -------------------------------------------------------------------------------- /GameDev1/ThemBones/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/ThemBones/hero.png -------------------------------------------------------------------------------- /GameDev1/ThrowingFire/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/ThrowingFire/Readme.md -------------------------------------------------------------------------------- /GameDev1/ThrowingFire/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/ThrowingFire/hero.png -------------------------------------------------------------------------------- /GameDev1/TimeToLive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/TimeToLive/Readme.md -------------------------------------------------------------------------------- /GameDev1/TimeToLive/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/TimeToLive/hero.png -------------------------------------------------------------------------------- /GameDev1/VorpalMouse/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/VorpalMouse/Readme.md -------------------------------------------------------------------------------- /GameDev1/VorpalMouse/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev1/VorpalMouse/hero.png -------------------------------------------------------------------------------- /GameDev2/AdventureTime/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/AdventureTime/Readme.md -------------------------------------------------------------------------------- /GameDev2/AdventureTime/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/AdventureTime/hero.png -------------------------------------------------------------------------------- /GameDev2/AgonyOfDefeat/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/AgonyOfDefeat/Readme.md -------------------------------------------------------------------------------- /GameDev2/AgonyOfDefeat/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/AgonyOfDefeat/hero.png -------------------------------------------------------------------------------- /GameDev2/ArmyTraining/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/ArmyTraining/Readme.md -------------------------------------------------------------------------------- /GameDev2/ArmyTraining/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/ArmyTraining/hero.png -------------------------------------------------------------------------------- /GameDev2/ArmyTraining2/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/ArmyTraining2/Readme.md -------------------------------------------------------------------------------- /GameDev2/ArmyTraining2/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/ArmyTraining2/hero.png -------------------------------------------------------------------------------- /GameDev2/Berserker/Berserker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Berserker/Berserker.py -------------------------------------------------------------------------------- /GameDev2/Berserker/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Berserker/Readme.md -------------------------------------------------------------------------------- /GameDev2/Berserker/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Berserker/hero.png -------------------------------------------------------------------------------- /GameDev2/Cages/Cages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Cages/Cages.py -------------------------------------------------------------------------------- /GameDev2/Cages/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Cages/Readme.md -------------------------------------------------------------------------------- /GameDev2/Cages/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Cages/hero.png -------------------------------------------------------------------------------- /GameDev2/Chokepoint/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Chokepoint/Readme.md -------------------------------------------------------------------------------- /GameDev2/Chokepoint/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Chokepoint/hero.png -------------------------------------------------------------------------------- /GameDev2/DifficultyCoin/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/DifficultyCoin/hero.png -------------------------------------------------------------------------------- /GameDev2/DontTouchThem/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/DontTouchThem/Readme.md -------------------------------------------------------------------------------- /GameDev2/DontTouchThem/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/DontTouchThem/hero.png -------------------------------------------------------------------------------- /GameDev2/FreezeTag/FreezeTag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/FreezeTag/FreezeTag.py -------------------------------------------------------------------------------- /GameDev2/FreezeTag/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/FreezeTag/Readme.md -------------------------------------------------------------------------------- /GameDev2/FreezeTag/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/FreezeTag/hero.png -------------------------------------------------------------------------------- /GameDev2/FromDustToDust/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/FromDustToDust/hero.png -------------------------------------------------------------------------------- /GameDev2/GuardDuty/GuardDuty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/GuardDuty/GuardDuty.js -------------------------------------------------------------------------------- /GameDev2/GuardDuty/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/GuardDuty/Readme.md -------------------------------------------------------------------------------- /GameDev2/GuardDuty/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/GuardDuty/hero.png -------------------------------------------------------------------------------- /GameDev2/HotGems/HotGems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/HotGems/HotGems.py -------------------------------------------------------------------------------- /GameDev2/HotGems/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/HotGems/Readme.md -------------------------------------------------------------------------------- /GameDev2/HotGems/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/HotGems/hero.png -------------------------------------------------------------------------------- /GameDev2/Jailbreak/Jailbreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Jailbreak/Jailbreak.py -------------------------------------------------------------------------------- /GameDev2/Jailbreak/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Jailbreak/Readme.md -------------------------------------------------------------------------------- /GameDev2/Jailbreak/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Jailbreak/hero.png -------------------------------------------------------------------------------- /GameDev2/LernaeanHydra/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/LernaeanHydra/Readme.md -------------------------------------------------------------------------------- /GameDev2/LernaeanHydra/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/LernaeanHydra/hero.png -------------------------------------------------------------------------------- /GameDev2/Palimpsest/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Palimpsest/Readme.md -------------------------------------------------------------------------------- /GameDev2/Palimpsest/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Palimpsest/hero.png -------------------------------------------------------------------------------- /GameDev2/PressurePlate/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/PressurePlate/Readme.md -------------------------------------------------------------------------------- /GameDev2/PressurePlate/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/PressurePlate/hero.png -------------------------------------------------------------------------------- /GameDev2/RandomRiposte/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/RandomRiposte/Readme.md -------------------------------------------------------------------------------- /GameDev2/RandomRiposte/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/RandomRiposte/hero.png -------------------------------------------------------------------------------- /GameDev2/RangerDanger/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/RangerDanger/Readme.md -------------------------------------------------------------------------------- /GameDev2/RangerDanger/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/RangerDanger/hero.png -------------------------------------------------------------------------------- /GameDev2/RiskAndReward/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/RiskAndReward/Readme.md -------------------------------------------------------------------------------- /GameDev2/RiskAndReward/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/RiskAndReward/hero.png -------------------------------------------------------------------------------- /GameDev2/RunForGold/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/RunForGold/Readme.md -------------------------------------------------------------------------------- /GameDev2/RunForGold/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/RunForGold/hero.png -------------------------------------------------------------------------------- /GameDev2/StickShift/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/StickShift/Readme.md -------------------------------------------------------------------------------- /GameDev2/StickShift/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/StickShift/hero.png -------------------------------------------------------------------------------- /GameDev2/Stormcloud/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Stormcloud/Readme.md -------------------------------------------------------------------------------- /GameDev2/Stormcloud/Stormcloud.py: -------------------------------------------------------------------------------- 1 | # https://codecombat.com/play/level/stormcloud 2 | # todo: -------------------------------------------------------------------------------- /GameDev2/Stormcloud/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Stormcloud/hero.png -------------------------------------------------------------------------------- /GameDev2/Teatime/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Teatime/Readme.md -------------------------------------------------------------------------------- /GameDev2/Teatime/Teatime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Teatime/Teatime.py -------------------------------------------------------------------------------- /GameDev2/Teatime/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev2/Teatime/hero.png -------------------------------------------------------------------------------- /GameDev3/LooneyGems/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/LooneyGems/Readme.md -------------------------------------------------------------------------------- /GameDev3/LooneyGems/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/LooneyGems/hero.png -------------------------------------------------------------------------------- /GameDev3/LoopingForest/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/LoopingForest/Readme.md -------------------------------------------------------------------------------- /GameDev3/LoopingForest/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/LoopingForest/hero.png -------------------------------------------------------------------------------- /GameDev3/PingBowling/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/PingBowling/Readme.md -------------------------------------------------------------------------------- /GameDev3/PingBowling/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/PingBowling/hero.png -------------------------------------------------------------------------------- /GameDev3/QuantumJump/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/QuantumJump/Readme.md -------------------------------------------------------------------------------- /GameDev3/QuantumJump/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/QuantumJump/hero.png -------------------------------------------------------------------------------- /GameDev3/Runner/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/Runner/Readme.md -------------------------------------------------------------------------------- /GameDev3/Runner/Runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/Runner/Runner.py -------------------------------------------------------------------------------- /GameDev3/Runner/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/Runner/hero.png -------------------------------------------------------------------------------- /GameDev3/RunnerStep2Environment/RunnerStep2Scoring.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameDev3/RunnerStep2Scoring/RunnerStep2Scoring.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameDev3/RunnerStep3Enemies/RunnerStep3Enemies.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameDev3/RunnerStep4Balance/RunnerStep4Balance.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GameDev3/SmoothRun/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/SmoothRun/Readme.md -------------------------------------------------------------------------------- /GameDev3/SmoothRun/SmoothRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/SmoothRun/SmoothRun.py -------------------------------------------------------------------------------- /GameDev3/SmoothRun/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/SmoothRun/hero.png -------------------------------------------------------------------------------- /GameDev3/TheBigGuy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/TheBigGuy/Readme.md -------------------------------------------------------------------------------- /GameDev3/TheBigGuy/TheBigGuy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/TheBigGuy/TheBigGuy.py -------------------------------------------------------------------------------- /GameDev3/TheBigGuy/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/GameDev3/TheBigGuy/hero.png -------------------------------------------------------------------------------- /Glacier/AlchemicStack/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/AlchemicStack/Readme.md -------------------------------------------------------------------------------- /Glacier/AlchemicStack/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/AlchemicStack/hero.png -------------------------------------------------------------------------------- /Glacier/AssemblySpeed/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/AssemblySpeed/Readme.md -------------------------------------------------------------------------------- /Glacier/AssemblySpeed/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/AssemblySpeed/hero.png -------------------------------------------------------------------------------- /Glacier/BombingRun/BombingRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/BombingRun/BombingRun.py -------------------------------------------------------------------------------- /Glacier/BombingRun/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/BombingRun/Readme.md -------------------------------------------------------------------------------- /Glacier/BombingRun/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/BombingRun/hero.png -------------------------------------------------------------------------------- /Glacier/Brewball/Brewball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Brewball/Brewball.py -------------------------------------------------------------------------------- /Glacier/Brewball/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Brewball/Readme.md -------------------------------------------------------------------------------- /Glacier/Brewball/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Brewball/hero.png -------------------------------------------------------------------------------- /Glacier/BrokenCircles/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/BrokenCircles/Readme.md -------------------------------------------------------------------------------- /Glacier/BrokenCircles/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/BrokenCircles/hero.png -------------------------------------------------------------------------------- /Glacier/CircleWalking/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/CircleWalking/Readme.md -------------------------------------------------------------------------------- /Glacier/CircleWalking/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/CircleWalking/hero.png -------------------------------------------------------------------------------- /Glacier/CodedOrders/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/CodedOrders/Readme.md -------------------------------------------------------------------------------- /Glacier/CodedOrders/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/CodedOrders/hero.png -------------------------------------------------------------------------------- /Glacier/CountLinks/CountLinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/CountLinks/CountLinks.py -------------------------------------------------------------------------------- /Glacier/CountLinks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/CountLinks/Readme.md -------------------------------------------------------------------------------- /Glacier/CountLinks/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/CountLinks/hero.png -------------------------------------------------------------------------------- /Glacier/Darkhopper/Darkhopper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Darkhopper/Darkhopper.py -------------------------------------------------------------------------------- /Glacier/Darkhopper/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Darkhopper/Readme.md -------------------------------------------------------------------------------- /Glacier/Darkhopper/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Darkhopper/hero.png -------------------------------------------------------------------------------- /Glacier/Dizziness/Dizziness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Dizziness/Dizziness.py -------------------------------------------------------------------------------- /Glacier/Dizziness/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Dizziness/Readme.md -------------------------------------------------------------------------------- /Glacier/Dizziness/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Dizziness/hero.png -------------------------------------------------------------------------------- /Glacier/DoubleQueue/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/DoubleQueue/Readme.md -------------------------------------------------------------------------------- /Glacier/DoubleQueue/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/DoubleQueue/hero.png -------------------------------------------------------------------------------- /Glacier/FirstOut/FirstOut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/FirstOut/FirstOut.py -------------------------------------------------------------------------------- /Glacier/FirstOut/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/FirstOut/Readme.md -------------------------------------------------------------------------------- /Glacier/FirstOut/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/FirstOut/hero.png -------------------------------------------------------------------------------- /Glacier/FormUp/FormUp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/FormUp/FormUp.py -------------------------------------------------------------------------------- /Glacier/FormUp/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/FormUp/Readme.md -------------------------------------------------------------------------------- /Glacier/FormUp/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/FormUp/hero.png -------------------------------------------------------------------------------- /Glacier/Fractalization/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Fractalization/Readme.md -------------------------------------------------------------------------------- /Glacier/Fractalization/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Fractalization/hero.png -------------------------------------------------------------------------------- /Glacier/FragileMaze/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/FragileMaze/Readme.md -------------------------------------------------------------------------------- /Glacier/FragileMaze/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/FragileMaze/hero.png -------------------------------------------------------------------------------- /Glacier/GemByGem/GemByGem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/GemByGem/GemByGem.py -------------------------------------------------------------------------------- /Glacier/GemByGem/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/GemByGem/Readme.md -------------------------------------------------------------------------------- /Glacier/GemByGem/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/GemByGem/hero.png -------------------------------------------------------------------------------- /Glacier/GoldenChoice/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/GoldenChoice/Readme.md -------------------------------------------------------------------------------- /Glacier/GoldenChoice/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/GoldenChoice/hero.png -------------------------------------------------------------------------------- /Glacier/GridmancerRedux/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/GridmancerRedux/hero.png -------------------------------------------------------------------------------- /Glacier/GuessMyNumber/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/GuessMyNumber/Readme.md -------------------------------------------------------------------------------- /Glacier/GuessMyNumber/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/GuessMyNumber/hero.png -------------------------------------------------------------------------------- /Glacier/HashedYaks/HashedYaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/HashedYaks/HashedYaks.py -------------------------------------------------------------------------------- /Glacier/HashedYaks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/HashedYaks/Readme.md -------------------------------------------------------------------------------- /Glacier/HashedYaks/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/HashedYaks/hero.png -------------------------------------------------------------------------------- /Glacier/HashingMagic/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/HashingMagic/Readme.md -------------------------------------------------------------------------------- /Glacier/HashingMagic/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/HashingMagic/hero.png -------------------------------------------------------------------------------- /Glacier/Hitman/Hitman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Hitman/Hitman.py -------------------------------------------------------------------------------- /Glacier/Hitman/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Hitman/Readme.md -------------------------------------------------------------------------------- /Glacier/Hitman/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Hitman/hero.png -------------------------------------------------------------------------------- /Glacier/IceLife/IceLife.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/IceLife/IceLife.py -------------------------------------------------------------------------------- /Glacier/IceLife/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/IceLife/Readme.md -------------------------------------------------------------------------------- /Glacier/IceLife/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/IceLife/hero.png -------------------------------------------------------------------------------- /Glacier/IceSoccer/IceSoccer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/IceSoccer/IceSoccer.py -------------------------------------------------------------------------------- /Glacier/IceSoccer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/IceSoccer/Readme.md -------------------------------------------------------------------------------- /Glacier/IceSoccer/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/IceSoccer/hero.png -------------------------------------------------------------------------------- /Glacier/KeyStack/KeyStack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/KeyStack/KeyStack.py -------------------------------------------------------------------------------- /Glacier/KeyStack/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/KeyStack/Readme.md -------------------------------------------------------------------------------- /Glacier/KeyStack/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/KeyStack/hero.png -------------------------------------------------------------------------------- /Glacier/LinkedKeys/LinkedKeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/LinkedKeys/LinkedKeys.py -------------------------------------------------------------------------------- /Glacier/LinkedKeys/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/LinkedKeys/Readme.md -------------------------------------------------------------------------------- /Glacier/Polygonception/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Polygonception/Readme.md -------------------------------------------------------------------------------- /Glacier/PrimePathing/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/PrimePathing/Readme.md -------------------------------------------------------------------------------- /Glacier/QueueManager/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/QueueManager/Readme.md -------------------------------------------------------------------------------- /Glacier/Razorfray/Razorfray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Razorfray/Razorfray.py -------------------------------------------------------------------------------- /Glacier/Razorfray/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Razorfray/Readme.md -------------------------------------------------------------------------------- /Glacier/SerpentSavings/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/SerpentSavings/Readme.md -------------------------------------------------------------------------------- /Glacier/SkatingAway/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/SkatingAway/Readme.md -------------------------------------------------------------------------------- /Glacier/SkatingAway/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/SkatingAway/hero.png -------------------------------------------------------------------------------- /Glacier/SkeletonPuzzle/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/SkeletonPuzzle/Readme.md -------------------------------------------------------------------------------- /Glacier/StackTriage/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/StackTriage/Readme.md -------------------------------------------------------------------------------- /Glacier/TreasuredInIce/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/TreasuredInIce/Readme.md -------------------------------------------------------------------------------- /Glacier/Wireless/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Wireless/Readme.md -------------------------------------------------------------------------------- /Glacier/Wireless/Wireless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Glacier/Wireless/Wireless.py -------------------------------------------------------------------------------- /HourOfCode2018/Readme.md: -------------------------------------------------------------------------------- 1 | https://codecombat.com/play/hoc-2018 -------------------------------------------------------------------------------- /Intro/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Intro/Readme.md -------------------------------------------------------------------------------- /Mountain/AlpineRally/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/AlpineRally/Readme.md -------------------------------------------------------------------------------- /Mountain/AnonymousBank/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/AnonymousBank/Readme.md -------------------------------------------------------------------------------- /Mountain/Antipodes/Antipodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Antipodes/Antipodes.py -------------------------------------------------------------------------------- /Mountain/Antipodes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Antipodes/Readme.md -------------------------------------------------------------------------------- /Mountain/AreaOfYetis/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/AreaOfYetis/Readme.md -------------------------------------------------------------------------------- /Mountain/BitsAndTrits/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/BitsAndTrits/Readme.md -------------------------------------------------------------------------------- /Mountain/BlackDiamond/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/BlackDiamond/Readme.md -------------------------------------------------------------------------------- /Mountain/BoneDance/BoneDance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/BoneDance/BoneDance.py -------------------------------------------------------------------------------- /Mountain/BoneDance/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/BoneDance/Readme.md -------------------------------------------------------------------------------- /Mountain/BorrowedSword/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/BorrowedSword/Readme.md -------------------------------------------------------------------------------- /Mountain/CloudripBrawl/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/CloudripBrawl/Readme.md -------------------------------------------------------------------------------- /Mountain/CloudripSiege/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/CloudripSiege/Readme.md -------------------------------------------------------------------------------- /Mountain/ClumsyCircle/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ClumsyCircle/Readme.md -------------------------------------------------------------------------------- /Mountain/CragTag/CragTag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/CragTag/CragTag.py -------------------------------------------------------------------------------- /Mountain/CragTag/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/CragTag/Readme.md -------------------------------------------------------------------------------- /Mountain/DanceOff/DanceOff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/DanceOff/DanceOff.py -------------------------------------------------------------------------------- /Mountain/DanceOff/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/DanceOff/Readme.md -------------------------------------------------------------------------------- /Mountain/DangerValley/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/DangerValley/Readme.md -------------------------------------------------------------------------------- /Mountain/DoubleAgent/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/DoubleAgent/Readme.md -------------------------------------------------------------------------------- /Mountain/EchoOfWar/EchoOfWar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/EchoOfWar/EchoOfWar.py -------------------------------------------------------------------------------- /Mountain/EchoOfWar/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/EchoOfWar/Readme.md -------------------------------------------------------------------------------- /Mountain/FenceBuilder/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/FenceBuilder/Readme.md -------------------------------------------------------------------------------- /Mountain/FizzbuzzPath/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/FizzbuzzPath/Readme.md -------------------------------------------------------------------------------- /Mountain/FlawlessPairs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/FlawlessPairs/Readme.md -------------------------------------------------------------------------------- /Mountain/ForestGarden/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ForestGarden/Readme.md -------------------------------------------------------------------------------- /Mountain/Gardener/Gardener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Gardener/Gardener.py -------------------------------------------------------------------------------- /Mountain/Gardener/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Gardener/Readme.md -------------------------------------------------------------------------------- /Mountain/GridMinefield/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/GridMinefield/Readme.md -------------------------------------------------------------------------------- /Mountain/GridSearch/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/GridSearch/Readme.md -------------------------------------------------------------------------------- /Mountain/Highlanders/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Highlanders/Readme.md -------------------------------------------------------------------------------- /Mountain/HowMuch/HowMuch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/HowMuch/HowMuch.py -------------------------------------------------------------------------------- /Mountain/HowMuch/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/HowMuch/Readme.md -------------------------------------------------------------------------------- /Mountain/Humantron/Humantron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Humantron/Humantron.py -------------------------------------------------------------------------------- /Mountain/Humantron/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Humantron/Readme.md -------------------------------------------------------------------------------- /Mountain/HuntingParty/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/HuntingParty/Readme.md -------------------------------------------------------------------------------- /Mountain/IceHunter/IceHunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/IceHunter/IceHunter.py -------------------------------------------------------------------------------- /Mountain/IceHunter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/IceHunter/Readme.md -------------------------------------------------------------------------------- /Mountain/InMyName/InMyName.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/InMyName/InMyName.py -------------------------------------------------------------------------------- /Mountain/InMyName/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/InMyName/Readme.md -------------------------------------------------------------------------------- /Mountain/LoudQuietness/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/LoudQuietness/Readme.md -------------------------------------------------------------------------------- /Mountain/MakeAdvances/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/MakeAdvances/Readme.md -------------------------------------------------------------------------------- /Mountain/MatchCord/MatchCord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/MatchCord/MatchCord.py -------------------------------------------------------------------------------- /Mountain/MatchCord/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/MatchCord/Readme.md -------------------------------------------------------------------------------- /Mountain/MedicSchool/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/MedicSchool/Readme.md -------------------------------------------------------------------------------- /Mountain/MinedGems/MinedGems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/MinedGems/MinedGems.py -------------------------------------------------------------------------------- /Mountain/MinedGems/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/MinedGems/Readme.md -------------------------------------------------------------------------------- /Mountain/Northwest/Northwest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Northwest/Northwest.py -------------------------------------------------------------------------------- /Mountain/Northwest/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Northwest/Readme.md -------------------------------------------------------------------------------- /Mountain/PeskyYaks/PeskyYaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/PeskyYaks/PeskyYaks.py -------------------------------------------------------------------------------- /Mountain/PeskyYaks/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/PeskyYaks/Readme.md -------------------------------------------------------------------------------- /Mountain/PowerPoints/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/PowerPoints/Readme.md -------------------------------------------------------------------------------- /Mountain/QuickFort/QuickFort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/QuickFort/QuickFort.py -------------------------------------------------------------------------------- /Mountain/QuickFort/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/QuickFort/Readme.md -------------------------------------------------------------------------------- /Mountain/ReadingRumble/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ReadingRumble/Readme.md -------------------------------------------------------------------------------- /Mountain/ReapingFire/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ReapingFire/Readme.md -------------------------------------------------------------------------------- /Mountain/RestlessDead/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/RestlessDead/Readme.md -------------------------------------------------------------------------------- /Mountain/RingBearer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/RingBearer/Readme.md -------------------------------------------------------------------------------- /Mountain/SafeSpot/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/SafeSpot/Readme.md -------------------------------------------------------------------------------- /Mountain/SafeSpot/SafeSpot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/SafeSpot/SafeSpot.py -------------------------------------------------------------------------------- /Mountain/SesamePath/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/SesamePath/Readme.md -------------------------------------------------------------------------------- /Mountain/Slalom/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Slalom/Readme.md -------------------------------------------------------------------------------- /Mountain/Slalom/Slalom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Slalom/Slalom.py -------------------------------------------------------------------------------- /Mountain/Sleepwalkers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Sleepwalkers/Readme.md -------------------------------------------------------------------------------- /Mountain/Snowdrops/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Snowdrops/Readme.md -------------------------------------------------------------------------------- /Mountain/Snowdrops/Snowdrops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Snowdrops/Snowdrops.py -------------------------------------------------------------------------------- /Mountain/SowingFire/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/SowingFire/Readme.md -------------------------------------------------------------------------------- /Mountain/SquareShield/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/SquareShield/Readme.md -------------------------------------------------------------------------------- /Mountain/SquareShield/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/SquareShield/hero.png -------------------------------------------------------------------------------- /Mountain/SteelclawGap/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/SteelclawGap/Readme.md -------------------------------------------------------------------------------- /Mountain/SteelclawGap/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/SteelclawGap/hero.png -------------------------------------------------------------------------------- /Mountain/SummitsGate/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/SummitsGate/Readme.md -------------------------------------------------------------------------------- /Mountain/SummitsGate/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/SummitsGate/hero.png -------------------------------------------------------------------------------- /Mountain/TheHuntBegins/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TheHuntBegins/Readme.md -------------------------------------------------------------------------------- /Mountain/TheHuntBegins/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TheHuntBegins/hero.png -------------------------------------------------------------------------------- /Mountain/TheSpyAmongUs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TheSpyAmongUs/Readme.md -------------------------------------------------------------------------------- /Mountain/TheSpyAmongUs/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TheSpyAmongUs/hero.png -------------------------------------------------------------------------------- /Mountain/TheTwoFlowers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TheTwoFlowers/Readme.md -------------------------------------------------------------------------------- /Mountain/TheTwoFlowers/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TheTwoFlowers/hero.png -------------------------------------------------------------------------------- /Mountain/ThinkAhead/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ThinkAhead/Readme.md -------------------------------------------------------------------------------- /Mountain/ThinkAhead/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ThinkAhead/hero.png -------------------------------------------------------------------------------- /Mountain/TimberGuard/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TimberGuard/Readme.md -------------------------------------------------------------------------------- /Mountain/TimberGuard/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TimberGuard/hero.png -------------------------------------------------------------------------------- /Mountain/TimberTurncoat/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TimberTurncoat/hero.png -------------------------------------------------------------------------------- /Mountain/ToArms/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ToArms/Readme.md -------------------------------------------------------------------------------- /Mountain/ToArms/ToArms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ToArms/ToArms.py -------------------------------------------------------------------------------- /Mountain/ToArms/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ToArms/hero.png -------------------------------------------------------------------------------- /Mountain/ToilAndTrouble/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ToilAndTrouble/hero.png -------------------------------------------------------------------------------- /Mountain/TreasureCave/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TreasureCave/Readme.md -------------------------------------------------------------------------------- /Mountain/TreasureCave/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TreasureCave/hero.png -------------------------------------------------------------------------------- /Mountain/Triage/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Triage/Readme.md -------------------------------------------------------------------------------- /Mountain/Triage/Triage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Triage/Triage.py -------------------------------------------------------------------------------- /Mountain/Triage/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/Triage/hero.png -------------------------------------------------------------------------------- /Mountain/TrojanYeti/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TrojanYeti/Readme.md -------------------------------------------------------------------------------- /Mountain/TrojanYeti/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TrojanYeti/hero.png -------------------------------------------------------------------------------- /Mountain/TwinsPower/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TwinsPower/Readme.md -------------------------------------------------------------------------------- /Mountain/TwinsPower/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/TwinsPower/hero.png -------------------------------------------------------------------------------- /Mountain/UneasyTruce/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/UneasyTruce/Readme.md -------------------------------------------------------------------------------- /Mountain/UneasyTruce/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/UneasyTruce/hero.png -------------------------------------------------------------------------------- /Mountain/VisionOfOgres/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/VisionOfOgres/Readme.md -------------------------------------------------------------------------------- /Mountain/VisionOfOgres/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/VisionOfOgres/hero.png -------------------------------------------------------------------------------- /Mountain/VitalPowers/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/VitalPowers/Readme.md -------------------------------------------------------------------------------- /Mountain/VitalPowers/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/VitalPowers/hero.png -------------------------------------------------------------------------------- /Mountain/YetiAway/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/YetiAway/Readme.md -------------------------------------------------------------------------------- /Mountain/YetiAway/YetiAway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/YetiAway/YetiAway.py -------------------------------------------------------------------------------- /Mountain/YetiAway/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/YetiAway/hero.png -------------------------------------------------------------------------------- /Mountain/YetiBeater/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/YetiBeater/Readme.md -------------------------------------------------------------------------------- /Mountain/YetiEater/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/YetiEater/Readme.md -------------------------------------------------------------------------------- /Mountain/YetiEater/YetiEater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/YetiEater/YetiEater.py -------------------------------------------------------------------------------- /Mountain/YetiEater/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/YetiEater/hero.png -------------------------------------------------------------------------------- /Mountain/ZeroSum/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ZeroSum/Readme.md -------------------------------------------------------------------------------- /Mountain/ZeroSum/ZeroSum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ZeroSum/ZeroSum.py -------------------------------------------------------------------------------- /Mountain/ZeroSum/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ZeroSum/hero.png -------------------------------------------------------------------------------- /Mountain/ZooKeeper/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ZooKeeper/Readme.md -------------------------------------------------------------------------------- /Mountain/ZooKeeper/ZooKeeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ZooKeeper/ZooKeeper.py -------------------------------------------------------------------------------- /Mountain/ZooKeeper/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Mountain/ZooKeeper/hero.png -------------------------------------------------------------------------------- /Multiplayer/AceOfCoders/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/AceOfCoders/hero.png -------------------------------------------------------------------------------- /Multiplayer/CrossBones/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/CrossBones/Readme.md -------------------------------------------------------------------------------- /Multiplayer/CrossBones/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/CrossBones/hero.png -------------------------------------------------------------------------------- /Multiplayer/Harrowland/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/Harrowland/Readme.md -------------------------------------------------------------------------------- /Multiplayer/Harrowland/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/Harrowland/hero.png -------------------------------------------------------------------------------- /Multiplayer/PowerPeak/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/PowerPeak/Readme.md -------------------------------------------------------------------------------- /Multiplayer/PowerPeak/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/PowerPeak/hero.png -------------------------------------------------------------------------------- /Multiplayer/WakkaMaulH/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/WakkaMaulH/Readme.md -------------------------------------------------------------------------------- /Multiplayer/WakkaMaulH/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/WakkaMaulH/hero.png -------------------------------------------------------------------------------- /Multiplayer/ZeroSum/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/ZeroSum/Readme.md -------------------------------------------------------------------------------- /Multiplayer/ZeroSum/ZeroSum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/ZeroSum/ZeroSum.js -------------------------------------------------------------------------------- /Multiplayer/ZeroSum/ZeroSum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/ZeroSum/ZeroSum.py -------------------------------------------------------------------------------- /Multiplayer/ZeroSum/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Multiplayer/ZeroSum/hero.png -------------------------------------------------------------------------------- /Picoctf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Picoctf/Readme.md -------------------------------------------------------------------------------- /Picoctf/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/Picoctf/hero.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/README.md -------------------------------------------------------------------------------- /UndefinedWorld/Appendix/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/UndefinedWorld/Appendix/hero.png -------------------------------------------------------------------------------- /UndefinedWorld/Tabloid/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/UndefinedWorld/Tabloid/Readme.md -------------------------------------------------------------------------------- /UndefinedWorld/Tabloid/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/UndefinedWorld/Tabloid/hero.png -------------------------------------------------------------------------------- /WebDev1/BigAndTall/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/BigAndTall/Readme.md -------------------------------------------------------------------------------- /WebDev1/BigAndTall/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/BigAndTall/hero.png -------------------------------------------------------------------------------- /WebDev1/BreakingNews/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/BreakingNews/Readme.md -------------------------------------------------------------------------------- /WebDev1/BreakingNews/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/BreakingNews/hero.png -------------------------------------------------------------------------------- /WebDev1/Classy/Classy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/Classy/Classy.html -------------------------------------------------------------------------------- /WebDev1/Classy/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/Classy/Readme.md -------------------------------------------------------------------------------- /WebDev1/Classy/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/Classy/hero.png -------------------------------------------------------------------------------- /WebDev1/DangerousDivide/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/DangerousDivide/hero.png -------------------------------------------------------------------------------- /WebDev1/Headliner/Headliner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/Headliner/Headliner.html -------------------------------------------------------------------------------- /WebDev1/Headliner/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/Headliner/Readme.md -------------------------------------------------------------------------------- /WebDev1/Headliner/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/Headliner/hero.png -------------------------------------------------------------------------------- /WebDev1/ListingIiaison/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/ListingIiaison/Readme.md -------------------------------------------------------------------------------- /WebDev1/ListingIiaison/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/ListingIiaison/hero.png -------------------------------------------------------------------------------- /WebDev1/OrdersWanted/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/OrdersWanted/Readme.md -------------------------------------------------------------------------------- /WebDev1/OrdersWanted/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/OrdersWanted/hero.png -------------------------------------------------------------------------------- /WebDev1/StylishIntent/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/StylishIntent/Readme.md -------------------------------------------------------------------------------- /WebDev1/StylishIntent/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/StylishIntent/hero.png -------------------------------------------------------------------------------- /WebDev1/Wanted/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/Wanted/Readme.md -------------------------------------------------------------------------------- /WebDev1/Wanted/Wanted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/Wanted/Wanted.html -------------------------------------------------------------------------------- /WebDev1/Wanted/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/Wanted/hero.png -------------------------------------------------------------------------------- /WebDev1/WantedPoster/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/WantedPoster/Readme.md -------------------------------------------------------------------------------- /WebDev1/WantedPoster/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev1/WantedPoster/hero.png -------------------------------------------------------------------------------- /WebDev2/Animania/Animania.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/Animania/Animania.html -------------------------------------------------------------------------------- /WebDev2/Animania/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/Animania/Readme.md -------------------------------------------------------------------------------- /WebDev2/Animania/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/Animania/hero.png -------------------------------------------------------------------------------- /WebDev2/BorderPatrol/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/BorderPatrol/Readme.md -------------------------------------------------------------------------------- /WebDev2/BorderPatrol/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/BorderPatrol/hero.png -------------------------------------------------------------------------------- /WebDev2/Clickthrough/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/Clickthrough/Readme.md -------------------------------------------------------------------------------- /WebDev2/Clickthrough/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/Clickthrough/hero.png -------------------------------------------------------------------------------- /WebDev2/DisappearingAct/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/DisappearingAct/hero.png -------------------------------------------------------------------------------- /WebDev2/MarginalUtility/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/MarginalUtility/hero.png -------------------------------------------------------------------------------- /WebDev2/QueryConfirmed/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/QueryConfirmed/Readme.md -------------------------------------------------------------------------------- /WebDev2/QueryConfirmed/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/QueryConfirmed/hero.png -------------------------------------------------------------------------------- /WebDev2/Quizlet/Quizlet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/Quizlet/Quizlet.html -------------------------------------------------------------------------------- /WebDev2/Quizlet/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/Quizlet/Readme.md -------------------------------------------------------------------------------- /WebDev2/Quizlet/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/Quizlet/hero.png -------------------------------------------------------------------------------- /WebDev2/SiblingRivalry/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/SiblingRivalry/Readme.md -------------------------------------------------------------------------------- /WebDev2/SiblingRivalry/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/SiblingRivalry/hero.png -------------------------------------------------------------------------------- /WebDev2/Toggulation/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/Toggulation/Readme.md -------------------------------------------------------------------------------- /WebDev2/Toggulation/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadim-job-hg/CodeCombat/HEAD/WebDev2/Toggulation/hero.png --------------------------------------------------------------------------------