├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── crash_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ └── build.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Content └── Data │ ├── Animations │ ├── BaseCrouch.txt │ ├── BaseIdle.txt │ ├── BaseJump.txt │ ├── BaseJumpFalling.txt │ ├── BaseJumpKick.txt │ ├── BaseKick.txt │ ├── BaseMelee1H1.txt │ ├── BaseMelee1H2.txt │ ├── BaseMelee1H3.txt │ ├── BaseMelee2H1.txt │ ├── BaseMelee2H2.txt │ ├── BaseMelee2H3.txt │ ├── BasePunch1.txt │ ├── BasePunch2.txt │ ├── BasePunch3.txt │ ├── BaseRun.txt │ ├── BaseSprint.txt │ ├── BaseStagger.txt │ ├── BaseWalk.txt │ ├── Error.txt │ ├── FullAttackCharge.txt │ ├── FullCharge.txt │ ├── FullChargeA.txt │ ├── FullChargeB.txt │ ├── FullDeathKneel.txt │ ├── FullDeathKneelHandgun.txt │ ├── FullDeathKneelMelee.txt │ ├── FullDeathKneelThrown.txt │ ├── FullDive.txt │ ├── FullEnter.txt │ ├── FullFallB.txt │ ├── FullFallF.txt │ ├── FullGrab.txt │ ├── FullGrabPunch.txt │ ├── FullGrabThrow.txt │ ├── FullGrabWalk.txt │ ├── FullGrabbedCorpse.txt │ ├── FullJumpAttack.txt │ ├── FullJumpAttackMelee.txt │ ├── FullJumpAttackMeleeChain.txt │ ├── FullJumpAttackMeleeChainEnd.txt │ ├── FullJumpAttackMeleeEnd.txt │ ├── FullKnockdownB.txt │ ├── FullKnockdownF.txt │ ├── FullLadderClimb.txt │ ├── FullLadderSlide.txt │ ├── FullLand.txt │ ├── FullLandHandgun.txt │ ├── FullLandMelee.txt │ ├── FullLandThrown.txt │ ├── FullLedgeGrab.txt │ ├── FullLedgeGrabTurn.txt │ ├── FullRocketRide.txt │ ├── FullRoll.txt │ ├── FullZombieSpawn.txt │ ├── Gesture_Cower.txt │ ├── Gesture_Tada.txt │ ├── ManualAimBase.txt │ ├── ManualAimBaseThrown.txt │ ├── ManualAimBoltAction.txt │ ├── ManualAimBow.txt │ ├── ManualAimBowStart.txt │ ├── ManualAimDual.txt │ ├── ManualAimHandgun.txt │ ├── ManualAimHandgunStart.txt │ ├── ManualAimRifle.txt │ ├── ManualAimRifleStart.txt │ ├── ManualAimShotgunPump.txt │ ├── ManualAimThrown.txt │ ├── ManualAimThrownStart.txt │ ├── TailIdle.txt │ ├── UpperAttackChainsaw.txt │ ├── UpperBlock.txt │ ├── UpperBlockChainsaw.txt │ ├── UpperBlockMelee.txt │ ├── UpperBlockMelee2H.txt │ ├── UpperBlockMelee2HEnd.txt │ ├── UpperBlockMeleeEnd.txt │ ├── UpperC4Detonate.txt │ ├── UpperCrouch.txt │ ├── UpperCrouchChainsaw.txt │ ├── UpperCrouchHandgun.txt │ ├── UpperCrouchMelee.txt │ ├── UpperCrouchMelee2H.txt │ ├── UpperCrouchRifle.txt │ ├── UpperDrawChainsaw.txt │ ├── UpperDrawHandgun.txt │ ├── UpperDrawMagnum.txt │ ├── UpperDrawMelee.txt │ ├── UpperDrawMelee2H.txt │ ├── UpperDrawMeleeSheathed.txt │ ├── UpperDrawRifle.txt │ ├── UpperDrawShotgun.txt │ ├── UpperDrawThrown.txt │ ├── UpperHipfireBoltAction.txt │ ├── UpperHipfireBow.txt │ ├── UpperHipfireHandgun.txt │ ├── UpperHipfireRifle.txt │ ├── UpperHipfireShotgunPump.txt │ ├── UpperIdle.txt │ ├── UpperIdleChainsaw.txt │ ├── UpperIdleHandgun.txt │ ├── UpperIdleMelee.txt │ ├── UpperIdleMelee2H.txt │ ├── UpperIdleRifle.txt │ ├── UpperIdleRiotShield.txt │ ├── UpperIdleZombie.txt │ ├── UpperIdleZombieHandgun.txt │ ├── UpperIdleZombieMelee.txt │ ├── UpperIdleZombieMelee2H.txt │ ├── UpperIdleZombieRifle.txt │ ├── UpperJump.txt │ ├── UpperJumpChainsaw.txt │ ├── UpperJumpFalling.txt │ ├── UpperJumpFallingChainsaw.txt │ ├── UpperJumpFallingHandgun.txt │ ├── UpperJumpFallingMelee.txt │ ├── UpperJumpFallingMelee2H.txt │ ├── UpperJumpFallingRifle.txt │ ├── UpperJumpHandgun.txt │ ├── UpperJumpKick.txt │ ├── UpperJumpKickHandgun.txt │ ├── UpperJumpKickMelee.txt │ ├── UpperJumpKickRifle.txt │ ├── UpperJumpMelee.txt │ ├── UpperJumpMelee2H.txt │ ├── UpperJumpRifle.txt │ ├── UpperKick.txt │ ├── UpperKickChainsaw.txt │ ├── UpperKickHandgun.txt │ ├── UpperKickMelee.txt │ ├── UpperKickMelee2H.txt │ ├── UpperKickRifle.txt │ ├── UpperMelee1H1.txt │ ├── UpperMelee1H1End.txt │ ├── UpperMelee1H2.txt │ ├── UpperMelee1H2End.txt │ ├── UpperMelee1H3.txt │ ├── UpperMelee1H3Chain.txt │ ├── UpperMelee1H3ChainEnd.txt │ ├── UpperMelee1H3End.txt │ ├── UpperMelee1H4.txt │ ├── UpperMelee2H1.txt │ ├── UpperMelee2H1End.txt │ ├── UpperMelee2H2.txt │ ├── UpperMelee2H2End.txt │ ├── UpperMelee2H3.txt │ ├── UpperMelee2H3End.txt │ ├── UpperMelee2H4.txt │ ├── UpperMeleeHit1.txt │ ├── UpperMeleeHit2.txt │ ├── UpperMeleeWhip.txt │ ├── UpperMeleeWhipEnd.txt │ ├── UpperPunch1.txt │ ├── UpperPunch2.txt │ ├── UpperPunch3.txt │ ├── UpperPunch4.txt │ ├── UpperReload.txt │ ├── UpperReloadBazooka.txt │ ├── UpperReloadShell.txt │ ├── UpperRun.txt │ ├── UpperRunChainsaw.txt │ ├── UpperRunHandgun.txt │ ├── UpperRunMelee.txt │ ├── UpperRunMelee2H.txt │ ├── UpperRunRifle.txt │ ├── UpperSheathHandgun.txt │ ├── UpperSheathMelee.txt │ ├── UpperSheathRifle.txt │ ├── UpperSheathThrown.txt │ ├── UpperSprint.txt │ ├── UpperStagger.txt │ ├── UpperStaggerHandgun.txt │ ├── UpperThrowSmall.txt │ ├── UpperThrowSmallRelease.txt │ ├── UpperToggleThrowing.txt │ ├── UpperUseSyringe.txt │ ├── UpperWalk.txt │ ├── UpperWalkChainsaw.txt │ ├── UpperWalkHandgun.txt │ ├── UpperWalkMelee.txt │ ├── UpperWalkMelee2H.txt │ ├── UpperWalkRifle.txt │ ├── UpperWalkZombie.txt │ ├── UpperWalkZombieHandgun.txt │ ├── UpperWalkZombieMelee.txt │ ├── UpperWalkZombieMelee2H.txt │ └── UpperWalkZombieRifle.txt │ ├── Colors │ ├── Colors │ │ ├── ItemColors.sfdx │ │ └── TileColors.sfdx │ └── Palettes │ │ ├── ItemPalettes.sfdx │ │ └── TilePalettes.sfdx │ ├── Fonts │ ├── Atari ST 8x16 System Font 24px.xnb │ ├── BigFont.xnb │ ├── FontSimple.xnb │ ├── uni 05_53 12px.xnb │ ├── uni 05_53 12px_NoShadow.xnb │ └── uni 05_53 12px_Outline.xnb │ ├── Images │ ├── Misc │ │ ├── Icons │ │ │ ├── Danila015.png │ │ │ ├── Dxse.png │ │ │ ├── Eiga.png │ │ │ ├── KLI.png │ │ │ ├── Mimyuu.png │ │ │ ├── Motto73.png │ │ │ ├── Odex.png │ │ │ ├── Samwow.png │ │ │ ├── Vixfor.png │ │ │ └── developer.png │ │ ├── SFDLogo │ │ │ ├── Logo_Deluxe1.png │ │ │ ├── Logo_DeluxeOff.png │ │ │ ├── Logo_Superfighters1.png │ │ │ ├── Logo_Superfighters2.png │ │ │ ├── Logo_Superfighters3.png │ │ │ ├── Logo_Superfighters4.png │ │ │ ├── Logo_SuperfightersFlicker.png │ │ │ └── Logo_SuperfightersOff.png │ │ ├── TeamIcon5.png │ │ ├── TeamIcon6.png │ │ └── profile_bg.png │ ├── Objects │ │ ├── Beachball00.png │ │ ├── Beachball00_D.png │ │ ├── Cannon00.png │ │ ├── CannonHolder00.png │ │ ├── CrateExplosive00.png │ │ ├── Debris │ │ │ ├── Head00.png │ │ │ ├── HeadDebris00A.png │ │ │ ├── HeadDebris00B.png │ │ │ ├── HeadDebris00C.png │ │ │ ├── MarbleStatueDebris00A.png │ │ │ ├── MarbleStatueDebris00B.png │ │ │ └── MarbleStatueDebris00C.png │ │ ├── Froggy00.png │ │ ├── Giblets │ │ │ ├── Brain00.png │ │ │ ├── Giblet05.png │ │ │ ├── Organ00.png │ │ │ ├── Organ01.png │ │ │ ├── Organ02.png │ │ │ ├── Organ03.png │ │ │ ├── Organ04.png │ │ │ └── Organ05.png │ │ ├── MarbleStatue00.png │ │ ├── MarbleStatue00_D.png │ │ ├── MarbleStatue00_DD.png │ │ ├── MarbleStatue01.png │ │ ├── MarbleStatue01_D.png │ │ ├── MarbleStatue01_DD.png │ │ ├── MarbleStatue02.png │ │ ├── MarbleStatue02_D.png │ │ ├── MarbleStatue02_DD.png │ │ ├── Monkey00.png │ │ ├── Parrot00.png │ │ ├── Parrot01.png │ │ ├── StreetLamp │ │ │ ├── StreetLamp01.png │ │ │ └── StreetLamp01_D.png │ │ ├── TrafficCone.png │ │ ├── Triggers │ │ │ └── SnowPile00.png │ │ ├── Watermelon00.png │ │ ├── Watermelon01.png │ │ ├── Watermelon02.png │ │ ├── WoodBarrel02.png │ │ └── WoodBarrelExplosive00.png │ ├── Tiles │ │ ├── Background │ │ │ ├── BgArcadeMachine00A.png │ │ │ ├── BgArmChair00A.png │ │ │ ├── BgBanner00A.png │ │ │ ├── BgBanner00B.png │ │ │ ├── BgBanner00C.png │ │ │ ├── BgBanner00D.png │ │ │ ├── BgBarShelf00A.png │ │ │ ├── BgBarShelf00B.png │ │ │ ├── BgBarShelf00C.png │ │ │ ├── BgBarShelf00D.png │ │ │ ├── BgBath00A.png │ │ │ ├── BgBedsideTable00A.png │ │ │ ├── BgBedsideTable00B.png │ │ │ ├── BgBedsideTable01A.png │ │ │ ├── BgBench00A.png │ │ │ ├── BgBigBanner00A.png │ │ │ ├── BgBigBanner00B.png │ │ │ ├── BgBigBanner00C.png │ │ │ ├── BgBigBanner00D.png │ │ │ ├── BgBigBanner00E.png │ │ │ ├── BgBigBanner01A.png │ │ │ ├── BgCandle00B.png │ │ │ ├── BgCandle00C.png │ │ │ ├── BgCandle01A.png │ │ │ ├── BgCandle01B.png │ │ │ ├── BgCandle01C.png │ │ │ ├── BgChainLinkFence00A.png │ │ │ ├── BgChainLinkFence00B.png │ │ │ ├── BgChainLinkFence00C.png │ │ │ ├── BgChainLinkFence00D.png │ │ │ ├── BgChainLinkFence00E.png │ │ │ ├── BgChainLinkFence00F.png │ │ │ ├── BgChainLinkFence00G.png │ │ │ ├── BgChainLinkFence00H.png │ │ │ ├── BgChainLinkFence00I.png │ │ │ ├── BgChair00A.png │ │ │ ├── BgChair01B.png │ │ │ ├── BgChest00A.png │ │ │ ├── BgChest00B.png │ │ │ ├── BgClockCabinet00A.png │ │ │ ├── BgCog00A.png │ │ │ ├── BgCog00B.png │ │ │ ├── BgCog00C.png │ │ │ ├── BgCog00D.png │ │ │ ├── BgCompetitionCup00A.png │ │ │ ├── BgCompetitionCup00B.png │ │ │ ├── BgCompetitionCup00C.png │ │ │ ├── BgCompetitionCup00D.png │ │ │ ├── BgCrystalBall00A.png │ │ │ ├── BgCrystalBall00B.png │ │ │ ├── BgDesk00A.png │ │ │ ├── BgDesk00B.png │ │ │ ├── BgDoll00A.png │ │ │ ├── BgDoll00B.png │ │ │ ├── BgDoll00C.png │ │ │ ├── BgDoll00D.png │ │ │ ├── BgDurableBamboo00A.png │ │ │ ├── BgDurableBamboo00B.png │ │ │ ├── BgDurableBamboo00C.png │ │ │ ├── BgElectricFence00A.png │ │ │ ├── BgElectricFence00B.png │ │ │ ├── BgElectricFence00C.png │ │ │ ├── BgElectricFence00D.png │ │ │ ├── BgElectricFence00E.png │ │ │ ├── BgFan02A.png │ │ │ ├── BgFan02B.png │ │ │ ├── BgFan03A.png │ │ │ ├── BgFan03B.png │ │ │ ├── BgFan04A.png │ │ │ ├── BgFan04B.png │ │ │ ├── BgFence00H.png │ │ │ ├── BgFence00I.png │ │ │ ├── BgFence00J.png │ │ │ ├── BgFence00K.png │ │ │ ├── BgFence00L.png │ │ │ ├── BgFence00M.png │ │ │ ├── BgFireExtinguisher00.png │ │ │ ├── BgFlagPole01A.png │ │ │ ├── BgFountain00A.png │ │ │ ├── BgFridge00A.png │ │ │ ├── BgFridge01A.png │ │ │ ├── BgFunnymanStatue00A.png │ │ │ ├── BgGasStove00A.png │ │ │ ├── BgGate00A.png │ │ │ ├── BgGate00B.png │ │ │ ├── BgGateFence00A.png │ │ │ ├── BgGateFence00B.png │ │ │ ├── BgGateFence00C.png │ │ │ ├── BgGateFence00D.png │ │ │ ├── BgGateFence00E.png │ │ │ ├── BgGateFence00F.png │ │ │ ├── BgGateFence00G.png │ │ │ ├── BgGateFence00H.png │ │ │ ├── BgGateFence00I.png │ │ │ ├── BgGateFence00J.png │ │ │ ├── BgGateFence00K.png │ │ │ ├── BgGateFence00L.png │ │ │ ├── BgGateFence00M.png │ │ │ ├── BgGlobe00.png │ │ │ ├── BgGlobe00A.png │ │ │ ├── BgGradientBlue00A.png │ │ │ ├── BgGradientBlue01A.png │ │ │ ├── BgGradientBlue02A.png │ │ │ ├── BgGradientCrimson00A.png │ │ │ ├── BgGradientCrimson01A.png │ │ │ ├── BgGradientCrimson02A.png │ │ │ ├── BgGradientGreen00A.png │ │ │ ├── BgGradientGreen01A.png │ │ │ ├── BgGradientGreen02A.png │ │ │ ├── BgGradientNavy00A.png │ │ │ ├── BgGradientNavy01A.png │ │ │ ├── BgGradientNavy02A.png │ │ │ ├── BgGradientPink00A.png │ │ │ ├── BgGradientPink01A.png │ │ │ ├── BgGradientPink02A.png │ │ │ ├── BgGradientPurple00A.png │ │ │ ├── BgGradientPurple01A.png │ │ │ ├── BgGradientPurple02A.png │ │ │ ├── BgGradientShadow00A.png │ │ │ ├── BgGradientShadow01A.png │ │ │ ├── BgGradientShadow02A.png │ │ │ ├── BgGradientWhite00A.png │ │ │ ├── BgGradientWhite01A.png │ │ │ ├── BgGradientWhite02A.png │ │ │ ├── BgGradientYellow00A.png │ │ │ ├── BgGradientYellow01A.png │ │ │ ├── BgGradientYellow02A.png │ │ │ ├── BgGrass00A.png │ │ │ ├── BgGrass00B.png │ │ │ ├── BgGrass00C.png │ │ │ ├── BgGrass00D.png │ │ │ ├── BgGrass01A.png │ │ │ ├── BgGrass01B.png │ │ │ ├── BgGrasses00A.png │ │ │ ├── BgGrasses00B.png │ │ │ ├── BgGuitar00A.png │ │ │ ├── BgHangedLamp00A.png │ │ │ ├── BgHeartMonitor00A.png │ │ │ ├── BgHeartMonitor00B.png │ │ │ ├── BgHourglass00.png │ │ │ ├── BgHourglass00A.png │ │ │ ├── BgHugeBanner00A.png │ │ │ ├── BgKitchenWardrobe00A.png │ │ │ ├── BgLampPost00A.png │ │ │ ├── BgLampPost00B.png │ │ │ ├── BgLampPost01A.png │ │ │ ├── BgLampPost01B.png │ │ │ ├── BgLampPost02A.png │ │ │ ├── BgLampStand00A.png │ │ │ ├── BgLavalamp00A.png │ │ │ ├── BgLavalamp01A.png │ │ │ ├── BgLeaves00.png │ │ │ ├── BgLeaves01.png │ │ │ ├── BgLeaves01A.png │ │ │ ├── BgLeaves01B.png │ │ │ ├── BgLeaves01C.png │ │ │ ├── BgLeaves02.png │ │ │ ├── BgLeaves03A.png │ │ │ ├── BgLightRadiusBlue00A.png │ │ │ ├── BgLightRadiusBlue01A.png │ │ │ ├── BgLightRadiusBlue02A.png │ │ │ ├── BgLightRadiusBlue03A.png │ │ │ ├── BgLightRadiusCrimson00A.png │ │ │ ├── BgLightRadiusCrimson01A.png │ │ │ ├── BgLightRadiusCrimson02A.png │ │ │ ├── BgLightRadiusCrimson03A.png │ │ │ ├── BgLightRadiusGreen00A.png │ │ │ ├── BgLightRadiusGreen01A.png │ │ │ ├── BgLightRadiusGreen02A.png │ │ │ ├── BgLightRadiusGreen03A.png │ │ │ ├── BgLightRadiusNavy00A.png │ │ │ ├── BgLightRadiusNavy01A.png │ │ │ ├── BgLightRadiusNavy02A.png │ │ │ ├── BgLightRadiusNavy03A.png │ │ │ ├── BgLightRadiusPink00A.png │ │ │ ├── BgLightRadiusPink01A.png │ │ │ ├── BgLightRadiusPink02A.png │ │ │ ├── BgLightRadiusPink03A.png │ │ │ ├── BgLightRadiusPurple00A.png │ │ │ ├── BgLightRadiusPurple01A.png │ │ │ ├── BgLightRadiusPurple02A.png │ │ │ ├── BgLightRadiusPurple03A.png │ │ │ ├── BgLightRadiusShadow00A.png │ │ │ ├── BgLightRadiusShadow01A.png │ │ │ ├── BgLightRadiusShadow02A.png │ │ │ ├── BgLightRadiusShadow03A.png │ │ │ ├── BgLightRadiusWhite00A.png │ │ │ ├── BgLightRadiusWhite01A.png │ │ │ ├── BgLightRadiusWhite02A.png │ │ │ ├── BgLightRadiusWhite03A.png │ │ │ ├── BgLightRadiusYellow00A.png │ │ │ ├── BgLightRadiusYellow01A.png │ │ │ ├── BgLightRadiusYellow02A.png │ │ │ ├── BgLightRadiusYellow03A.png │ │ │ ├── BgLitCandle00A.png │ │ │ ├── BgLitCandle00B.png │ │ │ ├── BgLitCandle00C.png │ │ │ ├── BgLitCandle01A.png │ │ │ ├── BgLitCandle01B.png │ │ │ ├── BgLittleShip00A.png │ │ │ ├── BgLock00A.png │ │ │ ├── BgLongPainting_D.png │ │ │ ├── BgMicrowaveOven00A.png │ │ │ ├── BgMirror00A.png │ │ │ ├── BgMirror00B.png │ │ │ ├── BgModernBed00A.png │ │ │ ├── BgModernBed00B.png │ │ │ ├── BgModernBed02A.png │ │ │ ├── BgModernMonitor00A.png │ │ │ ├── BgNeonArrow00.png │ │ │ ├── BgNeonBar00.png │ │ │ ├── BgNeonBeer00.png │ │ │ ├── BgNeonClosed00.png │ │ │ ├── BgNeonExit00.png │ │ │ ├── BgNeonOpen00.png │ │ │ ├── BgPainting00.png │ │ │ ├── BgPainting00A.png │ │ │ ├── BgPainting00B.png │ │ │ ├── BgPainting00C.png │ │ │ ├── BgPainting00D.png │ │ │ ├── BgPainting00E.png │ │ │ ├── BgPainting00_D.png │ │ │ ├── BgPainting01.png │ │ │ ├── BgPainting02.png │ │ │ ├── BgPainting03.png │ │ │ ├── BgPainting04.png │ │ │ ├── BgPainting06.png │ │ │ ├── BgPainting07.png │ │ │ ├── BgPainting09.png │ │ │ ├── BgPainting10.png │ │ │ ├── BgPaiting08.png │ │ │ ├── BgPalmTree00A.png │ │ │ ├── BgPalmTreeLeaf00A.png │ │ │ ├── BgPalmTreeLeaf00B.png │ │ │ ├── BgPalmTreeLeaf00C.png │ │ │ ├── BgPalmTreeTrunk00A.png │ │ │ ├── BgPiano00A.png │ │ │ ├── BgPicture00A.png │ │ │ ├── BgPicture01A.png │ │ │ ├── BgPirateShip01A.png │ │ │ ├── BgPirateShip01B.png │ │ │ ├── BgPirateShip01C.png │ │ │ ├── BgPirateShip02A.png │ │ │ ├── BgPirateShip03A.png │ │ │ ├── BgPirateShip03B.png │ │ │ ├── BgPirateShip03C.png │ │ │ ├── BgPirateShip03D.png │ │ │ ├── BgPirateShip03E.png │ │ │ ├── BgPirateShip03F.png │ │ │ ├── BgPirateShip04A.png │ │ │ ├── BgPirateShip04B.png │ │ │ ├── BgPirateShip04C.png │ │ │ ├── BgPirateShip05A.png │ │ │ ├── BgPirateShip05B.png │ │ │ ├── BgPirateShip05C.png │ │ │ ├── BgPirateShip05D.png │ │ │ ├── BgPirateShipSmall00.png │ │ │ ├── BgPirateWheelHolder00.png │ │ │ ├── BgPoster03.png │ │ │ ├── BgPoster04.png │ │ │ ├── BgPoster05.png │ │ │ ├── BgPoster06.png │ │ │ ├── BgPoster07.png │ │ │ ├── BgPoster08.png │ │ │ ├── BgPoster09.png │ │ │ ├── BgPoster10.png │ │ │ ├── BgPoster11.png │ │ │ ├── BgPoster12.png │ │ │ ├── BgPoster13.png │ │ │ ├── BgPoster14.png │ │ │ ├── BgPoster15.png │ │ │ ├── BgPoster16.png │ │ │ ├── BgPoster17.png │ │ │ ├── BgPoster18.png │ │ │ ├── BgPot00A.png │ │ │ ├── BgPot00B.png │ │ │ ├── BgProtestor00A.png │ │ │ ├── BgProtestor00B.png │ │ │ ├── BgProtestor00C.png │ │ │ ├── BgProtestor01A.png │ │ │ ├── BgProtestor01B.png │ │ │ ├── BgProtestor01C.png │ │ │ ├── BgRailing03A.png │ │ │ ├── BgRailing03B.png │ │ │ ├── BgRailing03C.png │ │ │ ├── BgRailing03D.png │ │ │ ├── BgRailing03E.png │ │ │ ├── BgRailing03F.png │ │ │ ├── BgRailing03G.png │ │ │ ├── BgRailing04A.png │ │ │ ├── BgRailing04B.png │ │ │ ├── BgRailing04C.png │ │ │ ├── BgRailing04D.png │ │ │ ├── BgRailing04E.png │ │ │ ├── BgRailing04F.png │ │ │ ├── BgRailing04G.png │ │ │ ├── BgRailing05A.png │ │ │ ├── BgRoadSign00.png │ │ │ ├── BgRoadSign01.png │ │ │ ├── BgScreen00A.png │ │ │ ├── BgSgtIrinaStatue00A.png │ │ │ ├── BgSign03A.png │ │ │ ├── BgSign091B.png │ │ │ ├── BgSiren00A.png │ │ │ ├── BgSiren00B.png │ │ │ ├── BgSiren01A.png │ │ │ ├── BgSiren01B.png │ │ │ ├── BgSofa00A.png │ │ │ ├── BgSpeaker01A.png │ │ │ ├── BgSpectator01.png │ │ │ ├── BgSpectator02.png │ │ │ ├── BgSpectator03.png │ │ │ ├── BgSpectator04.png │ │ │ ├── BgSpectator05.png │ │ │ ├── BgSpectator06.png │ │ │ ├── BgSpectator07.png │ │ │ ├── BgSpectator08.png │ │ │ ├── BgStreetLamp00A.png │ │ │ ├── BgStreetLamp00B.png │ │ │ ├── BgTable00B.png │ │ │ ├── BgTable011A.png │ │ │ ├── BgTableLamp00A.png │ │ │ ├── BgTerrarium00A.png │ │ │ ├── BgTerrarium00B.png │ │ │ ├── BgTiledWall00A.png │ │ │ ├── BgToilet00A.png │ │ │ ├── BgTreeWood00A.png │ │ │ ├── BgTreeWood00B.png │ │ │ ├── BgTreeWood00C.png │ │ │ ├── BgTreeWood00D.png │ │ │ ├── BgTreeWood00E.png │ │ │ ├── BgTreeWood00F.png │ │ │ ├── BgTreeWood00G.png │ │ │ ├── BgWall02R.png │ │ │ ├── BgWallDarkBigRound00A.png │ │ │ ├── BgWallDarkOutline00A.png │ │ │ ├── BgWallDarkRound00A.png │ │ │ ├── BgWallDarkShade00A.png │ │ │ ├── BgWallDarkShade00B.png │ │ │ ├── BgWallDarkShade00C.png │ │ │ ├── BgWallDarkShade00D.png │ │ │ ├── BgWallDarkShade00E.png │ │ │ ├── BgWallDarkShade00F.png │ │ │ ├── BgWallDarkShade00G.png │ │ │ ├── BgWallDarkShade00H.png │ │ │ ├── BgWallDarkShade00I.png │ │ │ ├── BgWallDarkShadeOutline00A.png │ │ │ ├── BgWallDarkShadeOutline00B.png │ │ │ ├── BgWallDarkShadeOutline00C.png │ │ │ ├── BgWallDarkShadeOutline00E.png │ │ │ ├── BgWallDarkShadeOutline00F.png │ │ │ ├── BgWallDarkShadeOutline00G.png │ │ │ ├── BgWallLightBigRound00A.png │ │ │ ├── BgWallLightOutline00A.png │ │ │ ├── BgWallLightRound00A.png │ │ │ ├── BgWallLightShade00A.png │ │ │ ├── BgWallLightShade00B.png │ │ │ ├── BgWallLightShade00C.png │ │ │ ├── BgWallLightShade00D.png │ │ │ ├── BgWallLightShade00E.png │ │ │ ├── BgWallLightShade00F.png │ │ │ ├── BgWallLightShade00G.png │ │ │ ├── BgWallLightShade00H.png │ │ │ ├── BgWallLightShade00I.png │ │ │ ├── BgWallLightShadeOutline00A.png │ │ │ ├── BgWallLightShadeOutline00B.png │ │ │ ├── BgWallLightShadeOutline00C.png │ │ │ ├── BgWallLightShadeOutline00E.png │ │ │ ├── BgWallLightShadeOutline00F.png │ │ │ ├── BgWallLightShadeOutline00G.png │ │ │ ├── BgWallMidBigRound00A.png │ │ │ ├── BgWallMidOutline00A.png │ │ │ ├── BgWallMidRound00A.png │ │ │ ├── BgWallMidShade00A.png │ │ │ ├── BgWallMidShade00B.png │ │ │ ├── BgWallMidShade00C.png │ │ │ ├── BgWallMidShade00D.png │ │ │ ├── BgWallMidShade00E.png │ │ │ ├── BgWallMidShade00F.png │ │ │ ├── BgWallMidShade00G.png │ │ │ ├── BgWallMidShade00H.png │ │ │ ├── BgWallMidShade00I.png │ │ │ ├── BgWallMidShadeOutline00A.png │ │ │ ├── BgWallMidShadeOutline00B.png │ │ │ ├── BgWallMidShadeOutline00C.png │ │ │ ├── BgWallMidShadeOutline00E.png │ │ │ ├── BgWallMidShadeOutline00F.png │ │ │ ├── BgWallMidShadeOutline00G.png │ │ │ ├── BgWallOutline02F.png │ │ │ ├── BgWallOutline02G.png │ │ │ ├── BgWallOutline02L.png │ │ │ ├── BgWallOutline02O.png │ │ │ ├── BgWallOutline02P.png │ │ │ ├── BgWallOutline02Q.png │ │ │ ├── BgWallOutline02R.png │ │ │ ├── BgWallpaper00A.png │ │ │ ├── BgWallpaper01A.png │ │ │ ├── BgWallpaper02A.png │ │ │ ├── BgWallpaper03A.png │ │ │ ├── BgWallpaper04A.png │ │ │ ├── BgWallpaper05A.png │ │ │ ├── BgWallpaper06A.png │ │ │ ├── BgWallpaper07A.png │ │ │ ├── BgWallpaper08A.png │ │ │ ├── BgWallpaper09A.png │ │ │ ├── BgWallpaper10A.png │ │ │ ├── BgWallpaper11A.png │ │ │ ├── BgWallpaper12A.png │ │ │ ├── BgWallpaper13A.png │ │ │ ├── BgWallpaper14A.png │ │ │ ├── BgWallpaper15A.png │ │ │ ├── BgWallpaper16A.png │ │ │ ├── BgWallpaper17A.png │ │ │ ├── BgWallpaper18A.png │ │ │ ├── BgWallpaper19A.png │ │ │ ├── BgWallpaper20A.png │ │ │ ├── BgWallpaper21A.png │ │ │ ├── BgWallpaper22A.png │ │ │ ├── BgWallpaper23A.png │ │ │ ├── BgWallpaper24A.png │ │ │ ├── BgWardrobe01A.png │ │ │ ├── BgWardrobe01B.png │ │ │ ├── BgWardrobe01C.png │ │ │ ├── BgWardrobe02A.png │ │ │ ├── BgWardrobe02B.png │ │ │ ├── BgWardrobe02C.png │ │ │ ├── BgWarnPoster00.png │ │ │ ├── BgWarningSign00A.png │ │ │ ├── BgWarningSign00B.png │ │ │ ├── BgWarningSign00C.png │ │ │ ├── BgWarningSign00D.png │ │ │ ├── BgWashStand00A.png │ │ │ ├── BgWasher00A.png │ │ │ ├── BgWindow09A.png │ │ │ ├── BgWindow09B.png │ │ │ ├── BgWindow09C.png │ │ │ ├── BgWindow09D.png │ │ │ ├── BgWindow09E.png │ │ │ ├── BgWindow09F.png │ │ │ ├── BgWindow09G.png │ │ │ ├── BgWindow09H.png │ │ │ ├── BgWindow09I.png │ │ │ ├── BgWindow09J.png │ │ │ ├── BgWindowFrame00A.png │ │ │ ├── BgWindowFrame00B.png │ │ │ ├── BgWindowFrame01A.png │ │ │ ├── BgWindowFrame01B.png │ │ │ ├── BgWindowSlope00A.png │ │ │ ├── BgWindowSlope01A.png │ │ │ ├── BgWoodenWallPanel00A.png │ │ │ ├── BgWoodenWallPanel00B.png │ │ │ ├── BgWoodenWallPanel00C.png │ │ │ ├── BgWoodenWallPanel00D.png │ │ │ ├── BgWoodenWallPanel00E.png │ │ │ ├── BgWoodenWallPanel00F.png │ │ │ ├── BgWoodenWallPanel00G.png │ │ │ ├── BgWoodenWallPanel00H.png │ │ │ └── BgWoodenWallPanel00I.png │ │ ├── FarBG │ │ │ ├── FarBgBlimp00B.png │ │ │ ├── FarBgBridge00.png │ │ │ ├── FarBgBuilding03A.png │ │ │ ├── FarBgBuilding03B.png │ │ │ ├── FarBgBuilding03C.png │ │ │ ├── FarBgBuilding03D.png │ │ │ ├── FarBgBuilding03E.png │ │ │ ├── FarBgBuilding03F.png │ │ │ ├── FarBgBuilding03G.png │ │ │ ├── FarBgBuilding03H.png │ │ │ ├── FarBgBuilding03I.png │ │ │ ├── FarBgBuilding03J.png │ │ │ ├── FarBgBuilding03K.png │ │ │ ├── FarBgBuilding03L.png │ │ │ ├── FarBgFog00.png │ │ │ ├── FarBgGradientBlue00A.png │ │ │ ├── FarBgGradientBlue01A.png │ │ │ ├── FarBgGradientBlue02A.png │ │ │ ├── FarBgGradientCrimson00A.png │ │ │ ├── FarBgGradientCrimson01A.png │ │ │ ├── FarBgGradientCrimson02A.png │ │ │ ├── FarBgGradientGreen00A.png │ │ │ ├── FarBgGradientGreen01A.png │ │ │ ├── FarBgGradientGreen02A.png │ │ │ ├── FarBgGradientNavy00A.png │ │ │ ├── FarBgGradientNavy01A.png │ │ │ ├── FarBgGradientNavy02A.png │ │ │ ├── FarBgGradientPink00A.png │ │ │ ├── FarBgGradientPink01A.png │ │ │ ├── FarBgGradientPink02A.png │ │ │ ├── FarBgGradientPurple00A.png │ │ │ ├── FarBgGradientPurple01A.png │ │ │ ├── FarBgGradientPurple02A.png │ │ │ ├── FarBgGradientShadow00A.png │ │ │ ├── FarBgGradientShadow01A.png │ │ │ ├── FarBgGradientShadow02A.png │ │ │ ├── FarBgGradientWhite00A.png │ │ │ ├── FarBgGradientWhite01A.png │ │ │ ├── FarBgGradientWhite02A.png │ │ │ ├── FarBgGradientYellow00A.png │ │ │ ├── FarBgGradientYellow01A.png │ │ │ ├── FarBgGradientYellow02A.png │ │ │ ├── FarBgLightRadiusBlue00A.png │ │ │ ├── FarBgLightRadiusBlue01A.png │ │ │ ├── FarBgLightRadiusBlue02A.png │ │ │ ├── FarBgLightRadiusBlue03A.png │ │ │ ├── FarBgLightRadiusCrimson00A.png │ │ │ ├── FarBgLightRadiusCrimson01A.png │ │ │ ├── FarBgLightRadiusCrimson02A.png │ │ │ ├── FarBgLightRadiusCrimson03A.png │ │ │ ├── FarBgLightRadiusGreen00A.png │ │ │ ├── FarBgLightRadiusGreen01A.png │ │ │ ├── FarBgLightRadiusGreen02A.png │ │ │ ├── FarBgLightRadiusGreen03A.png │ │ │ ├── FarBgLightRadiusNavy00A.png │ │ │ ├── FarBgLightRadiusNavy01A.png │ │ │ ├── FarBgLightRadiusNavy02A.png │ │ │ ├── FarBgLightRadiusNavy03A.png │ │ │ ├── FarBgLightRadiusPink00A.png │ │ │ ├── FarBgLightRadiusPink01A.png │ │ │ ├── FarBgLightRadiusPink02A.png │ │ │ ├── FarBgLightRadiusPink03A.png │ │ │ ├── FarBgLightRadiusPurple00A.png │ │ │ ├── FarBgLightRadiusPurple01A.png │ │ │ ├── FarBgLightRadiusPurple02A.png │ │ │ ├── FarBgLightRadiusPurple03A.png │ │ │ ├── FarBgLightRadiusShadow00A.png │ │ │ ├── FarBgLightRadiusShadow01A.png │ │ │ ├── FarBgLightRadiusShadow02A.png │ │ │ ├── FarBgLightRadiusShadow03A.png │ │ │ ├── FarBgLightRadiusWhite00A.png │ │ │ ├── FarBgLightRadiusWhite01A.png │ │ │ ├── FarBgLightRadiusWhite02A.png │ │ │ ├── FarBgLightRadiusWhite03A.png │ │ │ ├── FarBgLightRadiusYellow00A.png │ │ │ ├── FarBgLightRadiusYellow01A.png │ │ │ ├── FarBgLightRadiusYellow02A.png │ │ │ ├── FarBgLightRadiusYellow03A.png │ │ │ ├── FarBgMountains01A.png │ │ │ ├── FarBgMountains01B.png │ │ │ ├── FarBgMountains01C.png │ │ │ ├── FarBgMountains01D.png │ │ │ ├── FarBgWallDarkBigRound00A.png │ │ │ ├── FarBgWallDarkOutline00A.png │ │ │ ├── FarBgWallDarkRound00A.png │ │ │ ├── FarBgWallDarkShade00A.png │ │ │ ├── FarBgWallDarkShade00B.png │ │ │ ├── FarBgWallDarkShade00C.png │ │ │ ├── FarBgWallDarkShade00D.png │ │ │ ├── FarBgWallDarkShade00E.png │ │ │ ├── FarBgWallDarkShade00F.png │ │ │ ├── FarBgWallDarkShade00G.png │ │ │ ├── FarBgWallDarkShade00H.png │ │ │ ├── FarBgWallDarkShade00I.png │ │ │ ├── FarBgWallDarkShadeOutline00A.png │ │ │ ├── FarBgWallDarkShadeOutline00B.png │ │ │ ├── FarBgWallDarkShadeOutline00C.png │ │ │ ├── FarBgWallDarkShadeOutline00E.png │ │ │ ├── FarBgWallDarkShadeOutline00F.png │ │ │ ├── FarBgWallDarkShadeOutline00G.png │ │ │ ├── FarBgWallLightBigRound00A.png │ │ │ ├── FarBgWallLightOutline00A.png │ │ │ ├── FarBgWallLightRound00A.png │ │ │ ├── FarBgWallLightShade00A.png │ │ │ ├── FarBgWallLightShade00B.png │ │ │ ├── FarBgWallLightShade00C.png │ │ │ ├── FarBgWallLightShade00D.png │ │ │ ├── FarBgWallLightShade00E.png │ │ │ ├── FarBgWallLightShade00F.png │ │ │ ├── FarBgWallLightShade00G.png │ │ │ ├── FarBgWallLightShade00H.png │ │ │ ├── FarBgWallLightShade00I.png │ │ │ ├── FarBgWallLightShadeOutline00A.png │ │ │ ├── FarBgWallLightShadeOutline00B.png │ │ │ ├── FarBgWallLightShadeOutline00C.png │ │ │ ├── FarBgWallLightShadeOutline00E.png │ │ │ ├── FarBgWallLightShadeOutline00F.png │ │ │ ├── FarBgWallLightShadeOutline00G.png │ │ │ ├── FarBgWallMidBigRound00A.png │ │ │ ├── FarBgWallMidOutline00A.png │ │ │ ├── FarBgWallMidRound00A.png │ │ │ ├── FarBgWallMidShade00A.png │ │ │ ├── FarBgWallMidShade00B.png │ │ │ ├── FarBgWallMidShade00C.png │ │ │ ├── FarBgWallMidShade00D.png │ │ │ ├── FarBgWallMidShade00E.png │ │ │ ├── FarBgWallMidShade00F.png │ │ │ ├── FarBgWallMidShade00G.png │ │ │ ├── FarBgWallMidShade00H.png │ │ │ ├── FarBgWallMidShade00I.png │ │ │ ├── FarBgWallMidShadeOutline00A.png │ │ │ ├── FarBgWallMidShadeOutline00B.png │ │ │ ├── FarBgWallMidShadeOutline00C.png │ │ │ ├── FarBgWallMidShadeOutline00E.png │ │ │ ├── FarBgWallMidShadeOutline00F.png │ │ │ └── FarBgWallMidShadeOutline00G.png │ │ ├── Foreground │ │ │ ├── FgDamage00A.png │ │ │ ├── FgDamage00B.png │ │ │ ├── FgDamage01A.png │ │ │ ├── FgDamage01B.png │ │ │ ├── FgGradientBlue00A.png │ │ │ ├── FgGradientBlue01A.png │ │ │ ├── FgGradientBlue02A.png │ │ │ ├── FgGradientCrimson00A.png │ │ │ ├── FgGradientCrimson01A.png │ │ │ ├── FgGradientCrimson02A.png │ │ │ ├── FgGradientGreen00A.png │ │ │ ├── FgGradientGreen01A.png │ │ │ ├── FgGradientGreen02A.png │ │ │ ├── FgGradientNavy00A.png │ │ │ ├── FgGradientNavy01A.png │ │ │ ├── FgGradientNavy02A.png │ │ │ ├── FgGradientPink00A.png │ │ │ ├── FgGradientPink01A.png │ │ │ ├── FgGradientPink02A.png │ │ │ ├── FgGradientPurple00A.png │ │ │ ├── FgGradientPurple01A.png │ │ │ ├── FgGradientPurple02A.png │ │ │ ├── FgGradientShadow00A.png │ │ │ ├── FgGradientShadow01A.png │ │ │ ├── FgGradientShadow02A.png │ │ │ ├── FgGradientWhite00A.png │ │ │ ├── FgGradientWhite01A.png │ │ │ ├── FgGradientWhite02A.png │ │ │ ├── FgGradientYellow00A.png │ │ │ ├── FgGradientYellow01A.png │ │ │ ├── FgGradientYellow02A.png │ │ │ ├── FgLightRadiusBlue00A.png │ │ │ ├── FgLightRadiusBlue01A.png │ │ │ ├── FgLightRadiusBlue02A.png │ │ │ ├── FgLightRadiusBlue03A.png │ │ │ ├── FgLightRadiusCrimson00A.png │ │ │ ├── FgLightRadiusCrimson01A.png │ │ │ ├── FgLightRadiusCrimson02A.png │ │ │ ├── FgLightRadiusCrimson03A.png │ │ │ ├── FgLightRadiusGreen00A.png │ │ │ ├── FgLightRadiusGreen01A.png │ │ │ ├── FgLightRadiusGreen02A.png │ │ │ ├── FgLightRadiusGreen03A.png │ │ │ ├── FgLightRadiusNavy00A.png │ │ │ ├── FgLightRadiusNavy01A.png │ │ │ ├── FgLightRadiusNavy02A.png │ │ │ ├── FgLightRadiusNavy03A.png │ │ │ ├── FgLightRadiusPink00A.png │ │ │ ├── FgLightRadiusPink01A.png │ │ │ ├── FgLightRadiusPink02A.png │ │ │ ├── FgLightRadiusPink03A.png │ │ │ ├── FgLightRadiusPurple00A.png │ │ │ ├── FgLightRadiusPurple01A.png │ │ │ ├── FgLightRadiusPurple02A.png │ │ │ ├── FgLightRadiusPurple03A.png │ │ │ ├── FgLightRadiusShadow00A.png │ │ │ ├── FgLightRadiusShadow01A.png │ │ │ ├── FgLightRadiusShadow02A.png │ │ │ ├── FgLightRadiusShadow03A.png │ │ │ ├── FgLightRadiusWhite00A.png │ │ │ ├── FgLightRadiusWhite01A.png │ │ │ ├── FgLightRadiusWhite02A.png │ │ │ ├── FgLightRadiusWhite03A.png │ │ │ ├── FgLightRadiusYellow00A.png │ │ │ ├── FgLightRadiusYellow01A.png │ │ │ ├── FgLightRadiusYellow02A.png │ │ │ ├── FgLightRadiusYellow03A.png │ │ │ ├── FgWallDarkBigRound00A.png │ │ │ ├── FgWallDarkOutline00A.png │ │ │ ├── FgWallDarkRound00A.png │ │ │ ├── FgWallDarkShade00A.png │ │ │ ├── FgWallDarkShade00B.png │ │ │ ├── FgWallDarkShade00C.png │ │ │ ├── FgWallDarkShade00D.png │ │ │ ├── FgWallDarkShade00E.png │ │ │ ├── FgWallDarkShade00F.png │ │ │ ├── FgWallDarkShade00G.png │ │ │ ├── FgWallDarkShade00H.png │ │ │ ├── FgWallDarkShade00I.png │ │ │ ├── FgWallDarkShadeOutline00A.png │ │ │ ├── FgWallDarkShadeOutline00B.png │ │ │ ├── FgWallDarkShadeOutline00C.png │ │ │ ├── FgWallDarkShadeOutline00E.png │ │ │ ├── FgWallDarkShadeOutline00F.png │ │ │ ├── FgWallDarkShadeOutline00G.png │ │ │ ├── FgWallLightBigRound00A.png │ │ │ ├── FgWallLightOutline00A.png │ │ │ ├── FgWallLightRound00A.png │ │ │ ├── FgWallLightShade00A.png │ │ │ ├── FgWallLightShade00B.png │ │ │ ├── FgWallLightShade00C.png │ │ │ ├── FgWallLightShade00D.png │ │ │ ├── FgWallLightShade00E.png │ │ │ ├── FgWallLightShade00F.png │ │ │ ├── FgWallLightShade00G.png │ │ │ ├── FgWallLightShade00H.png │ │ │ ├── FgWallLightShade00I.png │ │ │ ├── FgWallLightShadeOutline00A.png │ │ │ ├── FgWallLightShadeOutline00B.png │ │ │ ├── FgWallLightShadeOutline00C.png │ │ │ ├── FgWallLightShadeOutline00E.png │ │ │ ├── FgWallLightShadeOutline00F.png │ │ │ ├── FgWallLightShadeOutline00G.png │ │ │ ├── FgWallMidBigRound00A.png │ │ │ ├── FgWallMidOutline00A.png │ │ │ ├── FgWallMidRound00A.png │ │ │ ├── FgWallMidShade00A.png │ │ │ ├── FgWallMidShade00B.png │ │ │ ├── FgWallMidShade00C.png │ │ │ ├── FgWallMidShade00D.png │ │ │ ├── FgWallMidShade00E.png │ │ │ ├── FgWallMidShade00F.png │ │ │ ├── FgWallMidShade00G.png │ │ │ ├── FgWallMidShade00H.png │ │ │ ├── FgWallMidShade00I.png │ │ │ ├── FgWallMidShadeOutline00A.png │ │ │ ├── FgWallMidShadeOutline00B.png │ │ │ ├── FgWallMidShadeOutline00C.png │ │ │ ├── FgWallMidShadeOutline00E.png │ │ │ ├── FgWallMidShadeOutline00F.png │ │ │ ├── FgWallMidShadeOutline00G.png │ │ │ ├── TransparentWater00A.png │ │ │ └── TransparentWater00B.png │ │ ├── Marker │ │ │ ├── NukeBooms.png │ │ │ ├── NukeGradient.png │ │ │ └── NukeTrigger2X.png │ │ └── Solid │ │ │ ├── AtlasStatueOld00.png │ │ │ ├── AtlasStatueOldGlobe.png │ │ │ ├── AtlasStatueOld_D.png │ │ │ ├── BurningWeakWallDarkShade00A.png │ │ │ ├── BurningWeakWallDarkShade00B.png │ │ │ ├── BurningWeakWallDarkShade00C.png │ │ │ ├── BurningWeakWallDarkShade00E.png │ │ │ ├── BurningWeakWallDarkShade00F.png │ │ │ ├── BurningWeakWallDarkShade00G.png │ │ │ ├── BurningWeakWallDarkShade00I.png │ │ │ ├── BurningWeakWallDarkShadeOutline00A.png │ │ │ ├── BurningWeakWallDarkShadeOutline00B.png │ │ │ ├── BurningWeakWallDarkShadeOutline00C.png │ │ │ ├── BurningWeakWallDarkShadeOutline00E.png │ │ │ ├── BurningWeakWallDarkShadeOutline00F.png │ │ │ ├── BurningWeakWallDarkShadeOutline00G.png │ │ │ ├── BurningWeakWallLightShade00A.png │ │ │ ├── BurningWeakWallLightShade00B.png │ │ │ ├── BurningWeakWallLightShade00C.png │ │ │ ├── BurningWeakWallLightShade00E.png │ │ │ ├── BurningWeakWallLightShade00F.png │ │ │ ├── BurningWeakWallLightShade00G.png │ │ │ ├── BurningWeakWallLightShade00I.png │ │ │ ├── BurningWeakWallLightShadeOutline00A.png │ │ │ ├── BurningWeakWallLightShadeOutline00B.png │ │ │ ├── BurningWeakWallLightShadeOutline00C.png │ │ │ ├── BurningWeakWallLightShadeOutline00E.png │ │ │ ├── BurningWeakWallLightShadeOutline00F.png │ │ │ ├── BurningWeakWallLightShadeOutline00G.png │ │ │ ├── BurningWeakWallMidShade00A.png │ │ │ ├── BurningWeakWallMidShade00B.png │ │ │ ├── BurningWeakWallMidShade00C.png │ │ │ ├── BurningWeakWallMidShade00E.png │ │ │ ├── BurningWeakWallMidShade00F.png │ │ │ ├── BurningWeakWallMidShade00G.png │ │ │ ├── BurningWeakWallMidShade00I.png │ │ │ ├── BurningWeakWallMidShadeOutline00A.png │ │ │ ├── BurningWeakWallMidShadeOutline00B.png │ │ │ ├── BurningWeakWallMidShadeOutline00C.png │ │ │ ├── BurningWeakWallMidShadeOutline00E.png │ │ │ ├── BurningWeakWallMidShadeOutline00F.png │ │ │ ├── BurningWeakWallMidShadeOutline00G.png │ │ │ ├── CannonBallCrate00.png │ │ │ ├── Cobblestone00A.png │ │ │ ├── DinoBone00A.png │ │ │ ├── DinoBone00B.png │ │ │ ├── DinoBone00C.png │ │ │ ├── DinoBone00D.png │ │ │ ├── DinoBone00E.png │ │ │ ├── DinoBone00F.png │ │ │ ├── DinoSkull00A.png │ │ │ ├── DinoSkull00B.png │ │ │ ├── DinoSpine00A.png │ │ │ ├── DinoSpine00B.png │ │ │ ├── DinoSpine00C.png │ │ │ ├── DurableBamboo00A.png │ │ │ ├── DurableBamboo00B.png │ │ │ ├── Ground00A.png │ │ │ ├── Ground00B.png │ │ │ ├── Ground00C.png │ │ │ ├── Ground00D.png │ │ │ ├── Ground00E.png │ │ │ ├── Ground00F.png │ │ │ ├── Ground00G.png │ │ │ ├── Ground00H.png │ │ │ ├── Ground00I.png │ │ │ ├── Ground00J.png │ │ │ ├── Ground01A.png │ │ │ ├── Ground02A.png │ │ │ ├── Ground03A.png │ │ │ ├── Ground04A.png │ │ │ ├── Ice00A.png │ │ │ ├── Ice00B.png │ │ │ ├── Ice00C.png │ │ │ ├── Ice00D.png │ │ │ ├── Ice00E.png │ │ │ ├── Ice00F.png │ │ │ ├── Ice00G.png │ │ │ ├── Ice00H.png │ │ │ ├── Ice00I.png │ │ │ ├── Ice00J.png │ │ │ ├── Ice01A.png │ │ │ ├── MarbleStatueBase00.png │ │ │ ├── PirateArmory00.png │ │ │ ├── PirateBrig00.png │ │ │ ├── PirateLadder00A.png │ │ │ ├── PirateLadder00B.png │ │ │ ├── PirateLadder00C.png │ │ │ ├── PirateLifeboat00.png │ │ │ ├── PirateShip00A.png │ │ │ ├── PirateShip00B.png │ │ │ ├── PirateShip00C.png │ │ │ ├── PirateShip00D.png │ │ │ ├── PirateShip00E.png │ │ │ ├── PirateShip00F.png │ │ │ ├── PirateShip01A.png │ │ │ ├── PirateShip01B.png │ │ │ ├── PirateShip01C.png │ │ │ ├── PirateShip01D.png │ │ │ ├── PirateShip01E.png │ │ │ ├── PirateShip01F.png │ │ │ ├── PirateShip01G.png │ │ │ ├── PirateShip02A.png │ │ │ ├── PirateShip02B.png │ │ │ ├── PirateShip02C.png │ │ │ ├── PirateShip02D.png │ │ │ ├── PirateShip03A.png │ │ │ ├── PirateShip03B.png │ │ │ ├── PirateShip03C.png │ │ │ ├── PirateShip03D.png │ │ │ ├── PirateShip03E.png │ │ │ ├── PirateShip03F.png │ │ │ ├── PirateShip03G.png │ │ │ ├── PirateShip03H.png │ │ │ ├── PirateShip03I.png │ │ │ ├── PirateShip03J.png │ │ │ ├── PirateShip03K.png │ │ │ ├── PirateShip03L.png │ │ │ ├── PirateShip03M.png │ │ │ ├── PirateShip03N.png │ │ │ ├── PirateShip03O.png │ │ │ ├── PirateShip03P.png │ │ │ ├── PirateShip03Q.png │ │ │ ├── PirateShip03R.png │ │ │ ├── PirateShip03S.png │ │ │ ├── PirateShip04A.png │ │ │ ├── PirateShip05A.png │ │ │ ├── PirateShip05B.png │ │ │ ├── PirateShip06A.png │ │ │ ├── PirateShip07A.png │ │ │ ├── PirateShip07B.png │ │ │ ├── PirateShip07C.png │ │ │ ├── PirateSteeringWheel00.png │ │ │ ├── PortalWoodD.png │ │ │ ├── PortalWoodU.png │ │ │ ├── Sand00A.png │ │ │ ├── Sand00B.png │ │ │ ├── Sand00C.png │ │ │ ├── Sand00D.png │ │ │ ├── Sand00E.png │ │ │ ├── Sand00F.png │ │ │ ├── Sand00G.png │ │ │ ├── Sand00H.png │ │ │ ├── Sand00I.png │ │ │ ├── Sand00J.png │ │ │ ├── Slab00A.png │ │ │ ├── Slab00B.png │ │ │ ├── Snow01A.png │ │ │ ├── Snow01B.png │ │ │ ├── Snow01C.png │ │ │ ├── Snow01D.png │ │ │ ├── Snow01E.png │ │ │ ├── Snow01F.png │ │ │ ├── Snow01G.png │ │ │ ├── Snow01H.png │ │ │ ├── Snow01I.png │ │ │ ├── Snow01J.png │ │ │ ├── Snow02A.png │ │ │ ├── WallDarkShade00A.png │ │ │ ├── WallDarkShade00B.png │ │ │ ├── WallDarkShade00C.png │ │ │ ├── WallDarkShade00E.png │ │ │ ├── WallDarkShade00F.png │ │ │ ├── WallDarkShade00G.png │ │ │ ├── WallDarkShade00I.png │ │ │ ├── WallDarkShadeOutline00A.png │ │ │ ├── WallDarkShadeOutline00B.png │ │ │ ├── WallDarkShadeOutline00C.png │ │ │ ├── WallDarkShadeOutline00E.png │ │ │ ├── WallDarkShadeOutline00F.png │ │ │ ├── WallDarkShadeOutline00G.png │ │ │ ├── WallLightShade00A.png │ │ │ ├── WallLightShade00B.png │ │ │ ├── WallLightShade00C.png │ │ │ ├── WallLightShade00E.png │ │ │ ├── WallLightShade00F.png │ │ │ ├── WallLightShade00G.png │ │ │ ├── WallLightShade00I.png │ │ │ ├── WallLightShadeOutline00A.png │ │ │ ├── WallLightShadeOutline00B.png │ │ │ ├── WallLightShadeOutline00C.png │ │ │ ├── WallLightShadeOutline00E.png │ │ │ ├── WallLightShadeOutline00F.png │ │ │ ├── WallLightShadeOutline00G.png │ │ │ ├── WallMidShade00A.png │ │ │ ├── WallMidShade00B.png │ │ │ ├── WallMidShade00C.png │ │ │ ├── WallMidShade00E.png │ │ │ ├── WallMidShade00F.png │ │ │ ├── WallMidShade00G.png │ │ │ ├── WallMidShade00I.png │ │ │ ├── WallMidShadeOutline00A.png │ │ │ ├── WallMidShadeOutline00B.png │ │ │ ├── WallMidShadeOutline00C.png │ │ │ ├── WallMidShadeOutline00E.png │ │ │ ├── WallMidShadeOutline00F.png │ │ │ ├── WallMidShadeOutline00G.png │ │ │ ├── WeakWallDarkShade00A.png │ │ │ ├── WeakWallDarkShade00B.png │ │ │ ├── WeakWallDarkShade00C.png │ │ │ ├── WeakWallDarkShade00E.png │ │ │ ├── WeakWallDarkShade00F.png │ │ │ ├── WeakWallDarkShade00G.png │ │ │ ├── WeakWallDarkShade00I.png │ │ │ ├── WeakWallDarkShadeOutline00A.png │ │ │ ├── WeakWallDarkShadeOutline00B.png │ │ │ ├── WeakWallDarkShadeOutline00C.png │ │ │ ├── WeakWallDarkShadeOutline00E.png │ │ │ ├── WeakWallDarkShadeOutline00F.png │ │ │ ├── WeakWallDarkShadeOutline00G.png │ │ │ ├── WeakWallLightShade00A.png │ │ │ ├── WeakWallLightShade00B.png │ │ │ ├── WeakWallLightShade00C.png │ │ │ ├── WeakWallLightShade00E.png │ │ │ ├── WeakWallLightShade00F.png │ │ │ ├── WeakWallLightShade00G.png │ │ │ ├── WeakWallLightShade00I.png │ │ │ ├── WeakWallLightShadeOutline00A.png │ │ │ ├── WeakWallLightShadeOutline00B.png │ │ │ ├── WeakWallLightShadeOutline00C.png │ │ │ ├── WeakWallLightShadeOutline00E.png │ │ │ ├── WeakWallLightShadeOutline00F.png │ │ │ ├── WeakWallLightShadeOutline00G.png │ │ │ ├── WeakWallMidShade00A.png │ │ │ ├── WeakWallMidShade00B.png │ │ │ ├── WeakWallMidShade00C.png │ │ │ ├── WeakWallMidShade00E.png │ │ │ ├── WeakWallMidShade00F.png │ │ │ ├── WeakWallMidShade00G.png │ │ │ ├── WeakWallMidShade00I.png │ │ │ ├── WeakWallMidShadeOutline00A.png │ │ │ ├── WeakWallMidShadeOutline00B.png │ │ │ ├── WeakWallMidShadeOutline00C.png │ │ │ ├── WeakWallMidShadeOutline00E.png │ │ │ ├── WeakWallMidShadeOutline00F.png │ │ │ ├── WeakWallMidShadeOutline00G.png │ │ │ ├── Wood00Weak.png │ │ │ ├── Wood01AWeak.png │ │ │ └── Wood03Weak.png │ └── Weapons │ │ ├── Handguns │ │ ├── AnacondaD.png │ │ ├── AnacondaDReload.png │ │ ├── AnacondaH.png │ │ ├── AnacondaM.png │ │ ├── AnacondaMH.png │ │ ├── AnacondaS.png │ │ ├── AnacondaThrowing.png │ │ ├── FlintlockD.png │ │ ├── FlintlockDReload.png │ │ ├── FlintlockM.png │ │ ├── FlintlockThrowing.png │ │ ├── NailgunD.png │ │ ├── NailgunDReload.png │ │ ├── NailgunM.png │ │ ├── NailgunS.png │ │ ├── NailgunThrowing.png │ │ ├── StickyLauncherD.png │ │ ├── StickyLauncherDReload.png │ │ ├── StickyLauncherM.png │ │ ├── StickyLauncherS.png │ │ ├── StickyLauncherThrowing.png │ │ ├── UnkemptHaroldD.png │ │ ├── UnkemptHaroldM.png │ │ ├── UnkemptHaroldS.png │ │ └── UnkemptHaroldThrowing.png │ │ ├── Makeshift │ │ ├── Brick00.png │ │ ├── Brick00D.png │ │ ├── Broom00.png │ │ ├── BroomD.png │ │ └── CannonBall00.png │ │ ├── Melee │ │ ├── BladeD.png │ │ ├── BladeDebris1.png │ │ ├── BladeM.png │ │ ├── BladeS.png │ │ ├── CaberD.png │ │ ├── CaberDebris1.png │ │ ├── CaberDebris2.png │ │ ├── CaberM.png │ │ ├── CaberS.png │ │ ├── CrowbarD.png │ │ ├── CrowbarDebris1.png │ │ ├── CrowbarM.png │ │ ├── CrowbarS.png │ │ ├── GreatswordD.png │ │ ├── GreatswordDebris1.png │ │ ├── GreatswordM.png │ │ ├── GreatswordS.png │ │ ├── MorningStarD.png │ │ ├── MorningStarDCurved.png │ │ ├── MorningStarDExtended.png │ │ ├── MorningStarDebris1.png │ │ ├── MorningStarDebris2.png │ │ ├── MorningStarM.png │ │ ├── MorningStarS.png │ │ ├── ParryingdaggerD.png │ │ ├── ParryingdaggerDebris1.png │ │ ├── ParryingdaggerH.png │ │ ├── ParryingdaggerM.png │ │ ├── ParryingdaggerMH.png │ │ ├── ParryingdaggerS.png │ │ ├── ParryingdaggerThrowing.png │ │ ├── ParryingdaggerThrown.png │ │ ├── PoleaxeD.png │ │ ├── PoleaxeDebris2.png │ │ ├── PoleaxeM.png │ │ ├── PoleaxeS.png │ │ ├── RapierD.png │ │ ├── RapierDebris1.png │ │ ├── RapierM.png │ │ ├── RapierS.png │ │ ├── RiotShieldD.png │ │ ├── RiotShieldDHold.png │ │ ├── RiotShieldDebris1.png │ │ ├── RiotShieldM.png │ │ ├── RiotShieldS.png │ │ ├── ScytheD.png │ │ ├── ScytheDebris1.png │ │ ├── ScytheH.png │ │ ├── ScytheM.png │ │ ├── ScytheS.png │ │ ├── SledgehammerD.png │ │ ├── SledgehammerDBlink.png │ │ ├── SledgehammerDebris1.png │ │ ├── SledgehammerM.png │ │ ├── SledgehammerS.png │ │ ├── SwitchbladeD.png │ │ ├── SwitchbladeDOpen.png │ │ ├── SwitchbladeM.png │ │ ├── SwitchbladeMH.png │ │ ├── SwitchbladeS.png │ │ ├── SwitchbladeThrowing.png │ │ └── SwitchbladeThrown.png │ │ ├── Other │ │ ├── AdrenalineBoost.png │ │ ├── AdrenalineBoostD.png │ │ ├── Gunpack.png │ │ ├── GunpackBack.png │ │ ├── GunpackDebris.png │ │ ├── GunpackDiving.png │ │ ├── HealthPouch.png │ │ ├── ItemGunpack.png │ │ ├── ItemJetpack.png │ │ ├── Jetpack.png │ │ ├── JetpackBack.png │ │ ├── JetpackDebris.png │ │ └── JetpackDiving.png │ │ ├── Projectiles │ │ ├── BulletBarrett.png │ │ ├── BulletBarrettSlowmo.png │ │ ├── BulletUnkemptHarold.png │ │ ├── CrossbowBolt00.png │ │ ├── CrossbowBolt01.png │ │ ├── FlashRocket.png │ │ ├── ProjectileFlintlock.png │ │ ├── ProjectileNailgun.png │ │ ├── ProjectileSticky.png │ │ ├── QuadRocket.png │ │ └── RCMRocket.png │ │ ├── Rifles │ │ ├── AA12D.png │ │ ├── AA12DReload.png │ │ ├── AA12M.png │ │ ├── AA12S.png │ │ ├── AA12Throwing.png │ │ ├── AK47D.png │ │ ├── AK47DReload.png │ │ ├── AK47M.png │ │ ├── AK47S.png │ │ ├── AK47Throwing.png │ │ ├── BarrettD.png │ │ ├── BarrettDReload.png │ │ ├── BarrettM.png │ │ ├── BarrettThrowing.png │ │ ├── BlunderbussD.png │ │ ├── BlunderbussM.png │ │ ├── BlunderbussS.png │ │ ├── BlunderbussThrowing.png │ │ ├── CrossbowD.png │ │ ├── CrossbowDDrawBack.png │ │ ├── CrossbowDDrawBackEmpty.png │ │ ├── CrossbowDReload1.png │ │ ├── CrossbowDReload2.png │ │ ├── CrossbowH.png │ │ ├── CrossbowHEmpty.png │ │ ├── CrossbowM.png │ │ ├── CrossbowS.png │ │ ├── CrossbowSEmpty.png │ │ ├── CrossbowT.png │ │ ├── DoubleBarrelD.png │ │ ├── DoubleBarrelDReload.png │ │ ├── DoubleBarrelM.png │ │ ├── DoubleBarrelS.png │ │ ├── DoubleBarrelThrowing.png │ │ ├── MinigunD.png │ │ ├── MinigunDF.png │ │ ├── MinigunM.png │ │ ├── MinigunS.png │ │ ├── MinigunThrowing.png │ │ ├── MusketD.png │ │ ├── MusketDReload.png │ │ ├── MusketH.png │ │ ├── MusketM.png │ │ ├── MusketS.png │ │ ├── MusketThrowing.png │ │ ├── QuadLauncherD.png │ │ ├── QuadLauncherM.png │ │ ├── QuadLauncherS.png │ │ ├── QuadLauncherThrowing.png │ │ ├── RCMD.png │ │ ├── RCMM.png │ │ ├── RCMS.png │ │ ├── RCMThrowing.png │ │ ├── WinchesterD.png │ │ ├── WinchesterDPump.png │ │ ├── WinchesterM.png │ │ ├── WinchesterS.png │ │ └── WinchesterThrowing.png │ │ └── Thrown │ │ ├── ClaymoreM.png │ │ ├── ClaymoreMBlink.png │ │ ├── FragGrenadeM.png │ │ ├── FragGrenadeT.png │ │ ├── ImpactGrenadeM.png │ │ ├── ImpactGrenadeT.png │ │ ├── SnowballM.png │ │ ├── SnowballT.png │ │ ├── StickyBombM.png │ │ └── StickyBombT.png │ ├── Items │ ├── Accessory │ │ ├── Armband.item │ │ ├── Armband_fem.item │ │ ├── AviatorMask.item │ │ ├── Beard.item │ │ ├── BeardAndGlasses.item │ │ ├── ColoredSwing.item │ │ ├── DogTag.item │ │ ├── EarRing.item │ │ ├── Eyepatch.item │ │ ├── GasMask3.item │ │ ├── GoalieMask2.item │ │ ├── GoateeBeard.item │ │ ├── Goggles3.item │ │ ├── Handlebar.item │ │ ├── Handlebar_fem.item │ │ ├── PlagueMask.item │ │ ├── SamuraiMask.item │ │ ├── Scar.item │ │ ├── Scarf2.item │ │ ├── Scarf2_fem.item │ │ ├── ShortBeard.item │ │ └── SkullMask.item │ ├── ChestOver │ │ ├── BombSuit.item │ │ ├── JesterCollar.item │ │ ├── KnightArmor.item │ │ ├── KnightArmor_fem.item │ │ ├── Overalls.item │ │ ├── Overalls_fem.item │ │ ├── PirateJacket.item │ │ ├── PirateJacket_fem.item │ │ ├── PulledSleevesJacket.item │ │ ├── PulledSleevesJacket_fem.item │ │ ├── SamuraiArmor.item │ │ ├── SamuraiArmor_fem.item │ │ ├── SleevelessVest.item │ │ └── SleevelessVest_fem.item │ ├── ChestUnder │ │ ├── BaseballShirt.item │ │ ├── BaseballShirt_fem.item │ │ ├── DoubleLayerTShirt.item │ │ ├── DoubleLayerTShirt_fem.item │ │ ├── StripedSweater.item │ │ ├── StripedSweater_fem.item │ │ ├── TracksuitJacket.item │ │ └── TracksuitJacket_fem.item │ ├── Feet │ │ ├── LongBoots.item │ │ ├── LongBootsBlack.item │ │ ├── ShoesAndSockBlack.item │ │ └── ShoesAndSocks.item │ ├── Hands │ │ ├── JewelryGloves.item │ │ └── KnightGloves.item │ ├── Head │ │ ├── BobHaircut.item │ │ ├── BowlerHat.item │ │ ├── Bun.item │ │ ├── Buzzcut.item │ │ ├── ChestCavity.item │ │ ├── ExposedBrain.item │ │ ├── HeadShot.item │ │ ├── HeadShot2.item │ │ ├── HeadShot3.item │ │ ├── Headless.item │ │ ├── Helmet3.item │ │ ├── Hoodie.item │ │ ├── JesterHat.item │ │ ├── KnightHelmet.item │ │ ├── PirateHat.item │ │ ├── PrincessHair.item │ │ ├── ProtectiveHelmet.item │ │ ├── SamuraiHelmet.item │ │ ├── SquareHelmet.item │ │ ├── Tail.item │ │ ├── TrenchHelmet.item │ │ ├── Ushanka.item │ │ └── VikingHelmet.item │ ├── Hurt │ │ ├── HurtLevel1.item │ │ └── HurtLevel2.item │ ├── Legs │ │ ├── Dress.item │ │ ├── Dress_fem.item │ │ ├── PaddedPants.item │ │ └── PaddedPants_fem.item │ ├── Skin │ │ ├── BurntHeadless.item │ │ ├── BurntHeadless_fem.item │ │ ├── NormalHeadless.item │ │ ├── NormalHeadless_fem.item │ │ ├── Tattoos.item │ │ ├── TattoosHeadless.item │ │ ├── TattoosHeadless_fem.item │ │ ├── Tattoos_fem.item │ │ ├── Warpaint.item │ │ ├── WarpaintHeadless.item │ │ ├── WarpaintHeadless_fem.item │ │ ├── Warpaint_fem.item │ │ ├── ZombieHeadless.item │ │ └── ZombieHeadless_fem.item │ └── Waist │ │ ├── TacticalBelt.item │ │ └── TacticalBelt_fem.item │ ├── Maps │ └── Official │ │ └── vs │ │ ├── Museum.sfdm │ │ ├── Old Factory.sfdm │ │ ├── Outpost.sfdm │ │ └── Under The Bridge.sfdm │ ├── Sounds │ ├── Music │ │ ├── FrozenBlood.mp3 │ │ └── Metrolaw.mp3 │ ├── Sounds.sfds │ └── Weapons │ │ ├── GLFire.wav │ │ ├── Gatling_spin.wav │ │ ├── Gatling_wind_down.wav │ │ ├── Gatling_wind_up.wav │ │ ├── HeavyCharge.wav │ │ ├── LightCharge.wav │ │ └── Sledgehammer.wav │ ├── Tiles │ ├── CollisionGroups │ │ └── collisionGroups.sfdx │ ├── Materials │ │ └── materials.sfdx │ ├── objects.sfdx │ ├── sfr_objects.sfdx │ ├── sfr_tiles.sfdx │ ├── sfr_tilesBG.sfdx │ ├── sfr_tilesFarBg.sfdx │ ├── sfr_tilesS.sfdx │ ├── tiles.sfdx │ ├── tilesBG.sfdx │ ├── tilesE.sfdx │ ├── tilesFarBG.sfdx │ └── tilesS.sfdx │ └── Weapons │ └── weapons.sfdx ├── LICENSE ├── README.md ├── SECURITY.md ├── SFD ├── Box2D.XNA.dll ├── Core.dll ├── Lidgren.Network.dll ├── SFD.GameScriptInterface.dll ├── SFD.Input.dll └── SFD.ScriptEngine.dll ├── SFR ├── API │ └── Engine.cs ├── App.config ├── Bootstrap │ ├── AnimationHandler.cs │ └── Assets.cs ├── Debug │ └── QuickStartup.cs ├── Editor │ └── MapToken.cs ├── Fighter │ ├── AnimHandler.cs │ ├── DevHandler.cs │ ├── ExtendedPlayer.cs │ ├── GadgetHandler.cs │ ├── GoreHandler.cs │ ├── Jetpacks │ │ ├── GenericJetpack.cs │ │ ├── Gunpack.cs │ │ ├── Jetpack.cs │ │ ├── JetpackEditor.cs │ │ ├── JetpackHandler.cs │ │ ├── JetpackState.cs │ │ └── JetpackType.cs │ ├── NameIconHandler.cs │ ├── PlayerHandler.cs │ └── StatusBarHandler.cs ├── Game │ ├── CommandHandler.cs │ └── WorldHandler.cs ├── Helper │ ├── ExtendedMath.cs │ ├── Extensions.cs │ └── Logger.cs ├── Misc │ ├── Globals.cs │ └── Tweaks.cs ├── Objects │ ├── Animal │ │ ├── ObjectAnimal.cs │ │ ├── ObjectFroggy.cs │ │ └── ObjectMonkey.cs │ ├── ObjectCannon.cs │ ├── ObjectClaymoreThrown.cs │ ├── ObjectCrossbowBolt.cs │ ├── ObjectDoor.cs │ ├── ObjectFragGrenadeThrown.cs │ ├── ObjectHead.cs │ ├── ObjectImpactGrenadeThrown.cs │ ├── ObjectInvisibleBlockWeak.cs │ ├── ObjectPirateItemGiver.cs │ ├── ObjectPirateShip.cs │ ├── ObjectSnowballThrown.cs │ ├── ObjectStickyBombThrown.cs │ ├── ObjectStickyProjectile.cs │ └── ObjectsHandler.cs ├── Program.cs ├── Projectiles │ ├── Database.cs │ ├── IExtendedProjectile.cs │ ├── ProjectileBarrett.cs │ ├── ProjectileBlunderbuss.cs │ ├── ProjectileCrossbow.cs │ ├── ProjectileDoubleBarrel.cs │ ├── ProjectileFlintlock.cs │ ├── ProjectileMinigun.cs │ ├── ProjectileMusket.cs │ ├── ProjectileNailGun.cs │ ├── ProjectileQuad.cs │ ├── ProjectileRCM.cs │ ├── ProjectileUnkemptHarold.cs │ └── ProjectileWinchester.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── SFR.csproj ├── Sync │ ├── Generic │ │ ├── DataType.cs │ │ ├── GenericData.cs │ │ ├── GenericServerData.cs │ │ └── SyncFlag.cs │ └── SyncHandler.cs ├── UI │ ├── CreditsPanel.cs │ ├── MainMenu.cs │ └── MenuItemLabel.cs ├── Weapons │ ├── Database.cs │ ├── Handguns │ │ ├── Anaconda.cs │ │ ├── Flintlock.cs │ │ ├── NailGun.cs │ │ ├── StickyLauncher.cs │ │ └── UnkemptHarold.cs │ ├── IExtendedWeapon.cs │ ├── ISharpMelee.cs │ ├── Makeshift │ │ ├── Brick.cs │ │ ├── Broom.cs │ │ └── CannonBall.cs │ ├── Melee │ │ ├── Blade.cs │ │ ├── Caber.cs │ │ ├── Crowbar.cs │ │ ├── Greatsword.cs │ │ ├── Morningstar.cs │ │ ├── ParryingDagger.cs │ │ ├── Poleaxe.cs │ │ ├── Rapier.cs │ │ ├── RiotShield.cs │ │ ├── Scythe.cs │ │ ├── Sledgehammer.cs │ │ └── Switchblade.cs │ ├── Others │ │ ├── AdrenalineBoost.cs │ │ ├── Gunpack.cs │ │ ├── HealthPouch.cs │ │ ├── Jetpack.cs │ │ └── JetpackEditor.cs │ ├── Rifles │ │ ├── AA12.cs │ │ ├── AK47.cs │ │ ├── Barrett.cs │ │ ├── Blunderbuss.cs │ │ ├── Crossbow.cs │ │ ├── DoubleBarrel.cs │ │ ├── Minigun.cs │ │ ├── Musket.cs │ │ ├── QuadLauncher.cs │ │ ├── RCM.cs │ │ └── Winchester.cs │ └── Thrown │ │ ├── Claymore.cs │ │ ├── FragGrenade.cs │ │ ├── ImpactGrenade.cs │ │ ├── Snowball.cs │ │ └── StickyBomb.cs ├── build.bat ├── build.example ├── icon.ico └── packages.config ├── SharedAssemblyInfo.cs ├── Superfighters Redux.sln ├── XNA ├── Microsoft.Xna.Framework.Avatar.dll ├── Microsoft.Xna.Framework.Content.Pipeline.AudioImporters.dll ├── Microsoft.Xna.Framework.Content.Pipeline.EffectImporter.dll ├── Microsoft.Xna.Framework.Content.Pipeline.FBXImporter.dll ├── Microsoft.Xna.Framework.Content.Pipeline.TextureImporter.dll ├── Microsoft.Xna.Framework.Content.Pipeline.VideoImporters.dll ├── Microsoft.Xna.Framework.Content.Pipeline.XImporter.dll ├── Microsoft.Xna.Framework.Content.Pipeline.dll ├── Microsoft.Xna.Framework.Game.dll ├── Microsoft.Xna.Framework.GamerServices.dll ├── Microsoft.Xna.Framework.Graphics.dll ├── Microsoft.Xna.Framework.Input.Touch.dll ├── Microsoft.Xna.Framework.Net.dll ├── Microsoft.Xna.Framework.Storage.dll ├── Microsoft.Xna.Framework.Video.dll ├── Microsoft.Xna.Framework.Xact.dll └── Microsoft.Xna.Framework.dll ├── docs ├── Gore.gif ├── Logo.gif ├── Logo.png ├── SkinsFull.gif ├── SkinsPreview1.gif ├── SkinsPreview2.gif ├── Tiles.gif └── Weapons.gif └── version /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/crash_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/.github/ISSUE_TEMPLATE/crash_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Content/Data/Animations/BaseCrouch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseCrouch.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseIdle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseIdle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseJump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseJump.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseJumpFalling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseJumpFalling.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseJumpKick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseJumpKick.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseKick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseKick.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseMelee1H1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseMelee1H1.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseMelee1H2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseMelee1H2.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseMelee1H3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseMelee1H3.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseMelee2H1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseMelee2H1.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseMelee2H2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseMelee2H2.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseMelee2H3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseMelee2H3.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BasePunch1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BasePunch1.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BasePunch2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BasePunch2.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BasePunch3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BasePunch3.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseRun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseRun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseSprint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseSprint.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseStagger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseStagger.txt -------------------------------------------------------------------------------- /Content/Data/Animations/BaseWalk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/BaseWalk.txt -------------------------------------------------------------------------------- /Content/Data/Animations/Error.txt: -------------------------------------------------------------------------------- 1 | frame 2 | time 100 3 | event 4 | 5 | -------------------------------------------------------------------------------- /Content/Data/Animations/FullAttackCharge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullAttackCharge.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullCharge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullCharge.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullChargeA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullChargeA.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullChargeB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullChargeB.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullDeathKneel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullDeathKneel.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullDeathKneelHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullDeathKneelHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullDeathKneelMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullDeathKneelMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullDeathKneelThrown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullDeathKneelThrown.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullDive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullDive.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullEnter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullEnter.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullFallB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullFallB.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullFallF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullFallF.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullGrab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullGrab.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullGrabPunch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullGrabPunch.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullGrabThrow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullGrabThrow.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullGrabWalk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullGrabWalk.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullGrabbedCorpse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullGrabbedCorpse.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullJumpAttack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullJumpAttack.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullJumpAttackMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullJumpAttackMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullJumpAttackMeleeChain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullJumpAttackMeleeChain.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullJumpAttackMeleeEnd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullJumpAttackMeleeEnd.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullKnockdownB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullKnockdownB.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullKnockdownF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullKnockdownF.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullLadderClimb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullLadderClimb.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullLadderSlide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullLadderSlide.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullLand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullLand.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullLandHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullLandHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullLandMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullLandMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullLandThrown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullLandThrown.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullLedgeGrab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullLedgeGrab.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullLedgeGrabTurn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullLedgeGrabTurn.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullRocketRide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullRocketRide.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullRoll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullRoll.txt -------------------------------------------------------------------------------- /Content/Data/Animations/FullZombieSpawn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/FullZombieSpawn.txt -------------------------------------------------------------------------------- /Content/Data/Animations/Gesture_Cower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/Gesture_Cower.txt -------------------------------------------------------------------------------- /Content/Data/Animations/Gesture_Tada.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/Gesture_Tada.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimBase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimBase.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimBaseThrown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimBaseThrown.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimBoltAction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimBoltAction.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimBow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimBow.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimBowStart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimBowStart.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimDual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimDual.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimHandgunStart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimHandgunStart.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimRifleStart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimRifleStart.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimShotgunPump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimShotgunPump.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimThrown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimThrown.txt -------------------------------------------------------------------------------- /Content/Data/Animations/ManualAimThrownStart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/ManualAimThrownStart.txt -------------------------------------------------------------------------------- /Content/Data/Animations/TailIdle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/TailIdle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperAttackChainsaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperAttackChainsaw.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperBlock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperBlock.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperBlockChainsaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperBlockChainsaw.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperBlockMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperBlockMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperBlockMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperBlockMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperBlockMelee2HEnd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperBlockMelee2HEnd.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperBlockMeleeEnd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperBlockMeleeEnd.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperC4Detonate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperC4Detonate.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperCrouch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperCrouch.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperCrouchChainsaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperCrouchChainsaw.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperCrouchHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperCrouchHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperCrouchMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperCrouchMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperCrouchMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperCrouchMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperCrouchRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperCrouchRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperDrawChainsaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperDrawChainsaw.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperDrawHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperDrawHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperDrawMagnum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperDrawMagnum.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperDrawMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperDrawMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperDrawMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperDrawMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperDrawMeleeSheathed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperDrawMeleeSheathed.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperDrawRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperDrawRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperDrawShotgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperDrawShotgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperDrawThrown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperDrawThrown.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperHipfireBoltAction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperHipfireBoltAction.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperHipfireBow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperHipfireBow.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperHipfireHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperHipfireHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperHipfireRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperHipfireRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperHipfireShotgunPump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperHipfireShotgunPump.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleChainsaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleChainsaw.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleRiotShield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleRiotShield.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleZombie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleZombie.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleZombieHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleZombieHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleZombieMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleZombieMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleZombieMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleZombieMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperIdleZombieRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperIdleZombieRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJump.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpChainsaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpChainsaw.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpFalling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpFalling.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpFallingChainsaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpFallingChainsaw.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpFallingHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpFallingHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpFallingMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpFallingMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpFallingMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpFallingMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpFallingRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpFallingRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpKick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpKick.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpKickHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpKickHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpKickMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpKickMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpKickRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpKickRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperJumpRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperJumpRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperKick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperKick.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperKickChainsaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperKickChainsaw.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperKickHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperKickHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperKickMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperKickMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperKickMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperKickMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperKickRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperKickRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee1H1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee1H1.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee1H1End.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee1H1End.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee1H2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee1H2.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee1H2End.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee1H2End.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee1H3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee1H3.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee1H3Chain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee1H3Chain.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee1H3ChainEnd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee1H3ChainEnd.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee1H3End.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee1H3End.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee1H4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee1H4.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee2H1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee2H1.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee2H1End.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee2H1End.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee2H2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee2H2.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee2H2End.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee2H2End.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee2H3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee2H3.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee2H3End.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee2H3End.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMelee2H4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMelee2H4.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMeleeHit1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMeleeHit1.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMeleeHit2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMeleeHit2.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMeleeWhip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMeleeWhip.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperMeleeWhipEnd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperMeleeWhipEnd.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperPunch1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperPunch1.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperPunch2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperPunch2.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperPunch3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperPunch3.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperPunch4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperPunch4.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperReload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperReload.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperReloadBazooka.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperReloadBazooka.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperReloadShell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperReloadShell.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperRun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperRun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperRunChainsaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperRunChainsaw.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperRunHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperRunHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperRunMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperRunMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperRunMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperRunMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperRunRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperRunRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperSheathHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperSheathHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperSheathMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperSheathMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperSheathRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperSheathRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperSheathThrown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperSheathThrown.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperSprint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperSprint.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperStagger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperStagger.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperStaggerHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperStaggerHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperThrowSmall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperThrowSmall.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperThrowSmallRelease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperThrowSmallRelease.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperToggleThrowing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperToggleThrowing.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperUseSyringe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperUseSyringe.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalk.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalkChainsaw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalkChainsaw.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalkHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalkHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalkMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalkMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalkMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalkMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalkRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalkRifle.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalkZombie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalkZombie.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalkZombieHandgun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalkZombieHandgun.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalkZombieMelee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalkZombieMelee.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalkZombieMelee2H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalkZombieMelee2H.txt -------------------------------------------------------------------------------- /Content/Data/Animations/UpperWalkZombieRifle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Animations/UpperWalkZombieRifle.txt -------------------------------------------------------------------------------- /Content/Data/Colors/Colors/ItemColors.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Colors/Colors/ItemColors.sfdx -------------------------------------------------------------------------------- /Content/Data/Colors/Colors/TileColors.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Colors/Colors/TileColors.sfdx -------------------------------------------------------------------------------- /Content/Data/Colors/Palettes/ItemPalettes.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Colors/Palettes/ItemPalettes.sfdx -------------------------------------------------------------------------------- /Content/Data/Colors/Palettes/TilePalettes.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Colors/Palettes/TilePalettes.sfdx -------------------------------------------------------------------------------- /Content/Data/Fonts/Atari ST 8x16 System Font 24px.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Fonts/Atari ST 8x16 System Font 24px.xnb -------------------------------------------------------------------------------- /Content/Data/Fonts/BigFont.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Fonts/BigFont.xnb -------------------------------------------------------------------------------- /Content/Data/Fonts/FontSimple.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Fonts/FontSimple.xnb -------------------------------------------------------------------------------- /Content/Data/Fonts/uni 05_53 12px.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Fonts/uni 05_53 12px.xnb -------------------------------------------------------------------------------- /Content/Data/Fonts/uni 05_53 12px_NoShadow.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Fonts/uni 05_53 12px_NoShadow.xnb -------------------------------------------------------------------------------- /Content/Data/Fonts/uni 05_53 12px_Outline.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Fonts/uni 05_53 12px_Outline.xnb -------------------------------------------------------------------------------- /Content/Data/Images/Misc/Icons/Danila015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/Icons/Danila015.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/Icons/Dxse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/Icons/Dxse.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/Icons/Eiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/Icons/Eiga.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/Icons/KLI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/Icons/KLI.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/Icons/Mimyuu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/Icons/Mimyuu.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/Icons/Motto73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/Icons/Motto73.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/Icons/Odex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/Icons/Odex.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/Icons/Samwow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/Icons/Samwow.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/Icons/Vixfor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/Icons/Vixfor.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/Icons/developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/Icons/developer.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/SFDLogo/Logo_Deluxe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/SFDLogo/Logo_Deluxe1.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/SFDLogo/Logo_DeluxeOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/SFDLogo/Logo_DeluxeOff.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/TeamIcon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/TeamIcon5.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/TeamIcon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/TeamIcon6.png -------------------------------------------------------------------------------- /Content/Data/Images/Misc/profile_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Misc/profile_bg.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Beachball00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Beachball00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Beachball00_D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Beachball00_D.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Cannon00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Cannon00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/CannonHolder00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/CannonHolder00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/CrateExplosive00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/CrateExplosive00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Debris/Head00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Debris/Head00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Debris/HeadDebris00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Debris/HeadDebris00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Froggy00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Froggy00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Giblets/Brain00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Giblets/Brain00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Giblets/Giblet05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Giblets/Giblet05.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Giblets/Organ00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Giblets/Organ00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Giblets/Organ01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Giblets/Organ01.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Giblets/Organ02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Giblets/Organ02.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Giblets/Organ03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Giblets/Organ03.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Giblets/Organ04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Giblets/Organ04.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Giblets/Organ05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Giblets/Organ05.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/MarbleStatue00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/MarbleStatue00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/MarbleStatue00_D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/MarbleStatue00_D.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/MarbleStatue00_DD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/MarbleStatue00_DD.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/MarbleStatue01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/MarbleStatue01.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/MarbleStatue01_D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/MarbleStatue01_D.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/MarbleStatue01_DD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/MarbleStatue01_DD.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/MarbleStatue02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/MarbleStatue02.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/MarbleStatue02_D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/MarbleStatue02_D.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/MarbleStatue02_DD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/MarbleStatue02_DD.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Monkey00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Monkey00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Parrot00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Parrot00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Parrot01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Parrot01.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/TrafficCone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/TrafficCone.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Triggers/SnowPile00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Triggers/SnowPile00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Watermelon00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Watermelon00.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Watermelon01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Watermelon01.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/Watermelon02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/Watermelon02.png -------------------------------------------------------------------------------- /Content/Data/Images/Objects/WoodBarrel02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Objects/WoodBarrel02.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgBath00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgBath00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgBench00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgBench00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgChair00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgChair00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgChair01B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgChair01B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgChest00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgChest00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgChest00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgChest00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgCog00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgCog00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgCog00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgCog00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgCog00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgCog00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgCog00D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgCog00D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgDesk00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgDesk00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgDesk00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgDesk00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgDoll00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgDoll00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgDoll00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgDoll00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgDoll00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgDoll00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgDoll00D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgDoll00D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFan02A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFan02A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFan02B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFan02B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFan03A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFan03A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFan03B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFan03B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFan04A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFan04A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFan04B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFan04B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFence00H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFence00H.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFence00I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFence00I.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFence00J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFence00J.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFence00K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFence00K.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFence00L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFence00L.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgFence00M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgFence00M.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgGate00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgGate00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgGate00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgGate00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgGlobe00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgGlobe00.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgGlobe00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgGlobe00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgGrass00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgGrass00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgGrass00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgGrass00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgGrass00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgGrass00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgGrass00D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgGrass00D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgGrass01A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgGrass01A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgGrass01B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgGrass01B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgLeaves00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgLeaves00.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgLeaves01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgLeaves01.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgLeaves02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgLeaves02.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgLock00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgLock00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPiano00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPiano00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster03.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster04.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster05.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster06.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster07.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster08.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster09.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster10.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster11.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster12.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster13.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster14.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster15.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster16.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster17.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPoster18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPoster18.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPot00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPot00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgPot00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgPot00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgSign03A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgSign03A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgSign091B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgSign091B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgSiren00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgSiren00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgSiren00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgSiren00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgSiren01A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgSiren01A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgSiren01B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgSiren01B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgSofa00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgSofa00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgTable00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgTable00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Background/BgWall02R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Background/BgWall02R.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/FarBG/FarBgBlimp00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/FarBG/FarBgBlimp00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/FarBG/FarBgBridge00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/FarBG/FarBgBridge00.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/FarBG/FarBgFog00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/FarBG/FarBgFog00.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Marker/NukeBooms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Marker/NukeBooms.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Marker/NukeGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Marker/NukeGradient.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Marker/NukeTrigger2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Marker/NukeTrigger2X.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Cobblestone00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Cobblestone00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoBone00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoBone00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoBone00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoBone00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoBone00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoBone00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoBone00D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoBone00D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoBone00E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoBone00E.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoBone00F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoBone00F.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoSkull00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoSkull00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoSkull00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoSkull00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoSpine00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoSpine00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoSpine00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoSpine00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/DinoSpine00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/DinoSpine00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground00D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground00D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground00E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground00E.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground00F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground00F.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground00G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground00G.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground00H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground00H.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground00I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground00I.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground00J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground00J.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground01A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground01A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground02A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground02A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground03A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground03A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ground04A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ground04A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice00D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice00D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice00E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice00E.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice00F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice00F.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice00G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice00G.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice00H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice00H.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice00I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice00I.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice00J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice00J.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Ice01A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Ice01A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateArmory00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateArmory00.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateBrig00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateBrig00.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateLadder00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateLadder00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateLadder00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateLadder00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateLadder00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateLadder00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip00D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip00D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip00E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip00E.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip00F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip00F.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip01A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip01A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip01B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip01B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip01C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip01C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip01D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip01D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip01E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip01E.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip01F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip01F.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip01G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip01G.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip02A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip02A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip02B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip02B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip02C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip02C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip02D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip02D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03E.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03F.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03G.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03H.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03I.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03J.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03K.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03L.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03M.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03N.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03O.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03O.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03P.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03Q.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03R.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip03S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip03S.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip04A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip04A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip05A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip05A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip05B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip05B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip06A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip06A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip07A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip07A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip07B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip07B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PirateShip07C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PirateShip07C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PortalWoodD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PortalWoodD.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/PortalWoodU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/PortalWoodU.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Sand00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Sand00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Sand00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Sand00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Sand00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Sand00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Sand00D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Sand00D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Sand00E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Sand00E.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Sand00F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Sand00F.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Sand00G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Sand00G.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Sand00H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Sand00H.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Sand00I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Sand00I.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Sand00J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Sand00J.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Slab00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Slab00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Slab00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Slab00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow01A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow01A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow01B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow01B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow01C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow01C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow01D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow01D.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow01E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow01E.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow01F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow01F.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow01G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow01G.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow01H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow01H.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow01I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow01I.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow01J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow01J.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Snow02A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Snow02A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/WallMidShade00A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/WallMidShade00A.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/WallMidShade00B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/WallMidShade00B.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/WallMidShade00C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/WallMidShade00C.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/WallMidShade00E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/WallMidShade00E.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/WallMidShade00F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/WallMidShade00F.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/WallMidShade00G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/WallMidShade00G.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/WallMidShade00I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/WallMidShade00I.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Wood00Weak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Wood00Weak.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Wood01AWeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Wood01AWeak.png -------------------------------------------------------------------------------- /Content/Data/Images/Tiles/Solid/Wood03Weak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Tiles/Solid/Wood03Weak.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Handguns/AnacondaD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Handguns/AnacondaD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Handguns/AnacondaH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Handguns/AnacondaH.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Handguns/AnacondaM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Handguns/AnacondaM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Handguns/AnacondaMH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Handguns/AnacondaMH.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Handguns/AnacondaS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Handguns/AnacondaS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Handguns/FlintlockD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Handguns/FlintlockD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Handguns/FlintlockM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Handguns/FlintlockM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Handguns/NailgunD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Handguns/NailgunD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Handguns/NailgunM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Handguns/NailgunM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Handguns/NailgunS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Handguns/NailgunS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Makeshift/Brick00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Makeshift/Brick00.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Makeshift/Brick00D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Makeshift/Brick00D.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Makeshift/Broom00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Makeshift/Broom00.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Makeshift/BroomD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Makeshift/BroomD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/BladeD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/BladeD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/BladeDebris1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/BladeDebris1.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/BladeM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/BladeM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/BladeS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/BladeS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/CaberD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/CaberD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/CaberDebris1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/CaberDebris1.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/CaberDebris2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/CaberDebris2.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/CaberM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/CaberM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/CaberS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/CaberS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/CrowbarD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/CrowbarD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/CrowbarM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/CrowbarM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/CrowbarS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/CrowbarS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/GreatswordD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/GreatswordD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/GreatswordM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/GreatswordM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/GreatswordS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/GreatswordS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/MorningStarD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/MorningStarD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/MorningStarM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/MorningStarM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/MorningStarS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/MorningStarS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/PoleaxeD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/PoleaxeD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/PoleaxeM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/PoleaxeM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/PoleaxeS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/PoleaxeS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/RapierD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/RapierD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/RapierDebris1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/RapierDebris1.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/RapierM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/RapierM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/RapierS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/RapierS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/RiotShieldD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/RiotShieldD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/RiotShieldM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/RiotShieldM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/RiotShieldS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/RiotShieldS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/ScytheD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/ScytheD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/ScytheDebris1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/ScytheDebris1.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/ScytheH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/ScytheH.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/ScytheM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/ScytheM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/ScytheS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/ScytheS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/SledgehammerD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/SledgehammerD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/SledgehammerM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/SledgehammerM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/SledgehammerS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/SledgehammerS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/SwitchbladeD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/SwitchbladeD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/SwitchbladeM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/SwitchbladeM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/SwitchbladeMH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/SwitchbladeMH.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Melee/SwitchbladeS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Melee/SwitchbladeS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/Gunpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/Gunpack.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/GunpackBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/GunpackBack.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/GunpackDebris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/GunpackDebris.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/GunpackDiving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/GunpackDiving.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/HealthPouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/HealthPouch.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/ItemGunpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/ItemGunpack.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/ItemJetpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/ItemJetpack.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/Jetpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/Jetpack.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/JetpackBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/JetpackBack.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/JetpackDebris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/JetpackDebris.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Other/JetpackDiving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Other/JetpackDiving.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/AA12D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/AA12D.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/AA12DReload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/AA12DReload.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/AA12M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/AA12M.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/AA12S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/AA12S.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/AA12Throwing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/AA12Throwing.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/AK47D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/AK47D.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/AK47DReload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/AK47DReload.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/AK47M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/AK47M.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/AK47S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/AK47S.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/AK47Throwing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/AK47Throwing.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/BarrettD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/BarrettD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/BarrettM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/BarrettM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/BlunderbussD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/BlunderbussD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/BlunderbussM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/BlunderbussM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/BlunderbussS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/BlunderbussS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/CrossbowD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/CrossbowD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/CrossbowH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/CrossbowH.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/CrossbowM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/CrossbowM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/CrossbowS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/CrossbowS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/CrossbowT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/CrossbowT.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/MinigunD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/MinigunD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/MinigunDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/MinigunDF.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/MinigunM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/MinigunM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/MinigunS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/MinigunS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/MusketD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/MusketD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/MusketH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/MusketH.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/MusketM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/MusketM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/MusketS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/MusketS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/RCMD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/RCMD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/RCMM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/RCMM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/RCMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/RCMS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/RCMThrowing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/RCMThrowing.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/WinchesterD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/WinchesterD.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/WinchesterM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/WinchesterM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Rifles/WinchesterS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Rifles/WinchesterS.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Thrown/ClaymoreM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Thrown/ClaymoreM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Thrown/FragGrenadeM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Thrown/FragGrenadeM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Thrown/FragGrenadeT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Thrown/FragGrenadeT.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Thrown/SnowballM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Thrown/SnowballM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Thrown/SnowballT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Thrown/SnowballT.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Thrown/StickyBombM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Thrown/StickyBombM.png -------------------------------------------------------------------------------- /Content/Data/Images/Weapons/Thrown/StickyBombT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Images/Weapons/Thrown/StickyBombT.png -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/Armband.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/Armband.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/Armband_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/Armband_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/AviatorMask.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/AviatorMask.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/Beard.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/Beard.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/BeardAndGlasses.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/BeardAndGlasses.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/ColoredSwing.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/ColoredSwing.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/DogTag.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/DogTag.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/EarRing.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/EarRing.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/Eyepatch.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/Eyepatch.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/GasMask3.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/GasMask3.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/GoalieMask2.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/GoalieMask2.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/GoateeBeard.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/GoateeBeard.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/Goggles3.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/Goggles3.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/Handlebar.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/Handlebar.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/Handlebar_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/Handlebar_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/PlagueMask.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/PlagueMask.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/SamuraiMask.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/SamuraiMask.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/Scar.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/Scar.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/Scarf2.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/Scarf2.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/Scarf2_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/Scarf2_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/ShortBeard.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/ShortBeard.item -------------------------------------------------------------------------------- /Content/Data/Items/Accessory/SkullMask.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Accessory/SkullMask.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/BombSuit.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/BombSuit.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/JesterCollar.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/JesterCollar.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/KnightArmor.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/KnightArmor.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/KnightArmor_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/KnightArmor_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/Overalls.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/Overalls.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/Overalls_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/Overalls_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/PirateJacket.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/PirateJacket.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/PirateJacket_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/PirateJacket_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/SamuraiArmor.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/SamuraiArmor.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/SamuraiArmor_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/SamuraiArmor_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestOver/SleevelessVest.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestOver/SleevelessVest.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestUnder/BaseballShirt.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestUnder/BaseballShirt.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestUnder/StripedSweater.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestUnder/StripedSweater.item -------------------------------------------------------------------------------- /Content/Data/Items/ChestUnder/TracksuitJacket.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/ChestUnder/TracksuitJacket.item -------------------------------------------------------------------------------- /Content/Data/Items/Feet/LongBoots.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Feet/LongBoots.item -------------------------------------------------------------------------------- /Content/Data/Items/Feet/LongBootsBlack.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Feet/LongBootsBlack.item -------------------------------------------------------------------------------- /Content/Data/Items/Feet/ShoesAndSockBlack.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Feet/ShoesAndSockBlack.item -------------------------------------------------------------------------------- /Content/Data/Items/Feet/ShoesAndSocks.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Feet/ShoesAndSocks.item -------------------------------------------------------------------------------- /Content/Data/Items/Hands/JewelryGloves.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Hands/JewelryGloves.item -------------------------------------------------------------------------------- /Content/Data/Items/Hands/KnightGloves.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Hands/KnightGloves.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/BobHaircut.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/BobHaircut.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/BowlerHat.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/BowlerHat.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/Bun.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/Bun.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/Buzzcut.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/Buzzcut.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/ChestCavity.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/ChestCavity.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/ExposedBrain.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/ExposedBrain.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/HeadShot.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/HeadShot.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/HeadShot2.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/HeadShot2.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/HeadShot3.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/HeadShot3.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/Headless.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/Headless.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/Helmet3.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/Helmet3.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/Hoodie.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/Hoodie.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/JesterHat.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/JesterHat.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/KnightHelmet.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/KnightHelmet.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/PirateHat.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/PirateHat.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/PrincessHair.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/PrincessHair.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/ProtectiveHelmet.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/ProtectiveHelmet.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/SamuraiHelmet.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/SamuraiHelmet.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/SquareHelmet.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/SquareHelmet.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/Tail.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/Tail.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/TrenchHelmet.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/TrenchHelmet.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/Ushanka.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/Ushanka.item -------------------------------------------------------------------------------- /Content/Data/Items/Head/VikingHelmet.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Head/VikingHelmet.item -------------------------------------------------------------------------------- /Content/Data/Items/Hurt/HurtLevel1.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Hurt/HurtLevel1.item -------------------------------------------------------------------------------- /Content/Data/Items/Hurt/HurtLevel2.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Hurt/HurtLevel2.item -------------------------------------------------------------------------------- /Content/Data/Items/Legs/Dress.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Legs/Dress.item -------------------------------------------------------------------------------- /Content/Data/Items/Legs/Dress_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Legs/Dress_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Legs/PaddedPants.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Legs/PaddedPants.item -------------------------------------------------------------------------------- /Content/Data/Items/Legs/PaddedPants_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Legs/PaddedPants_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/BurntHeadless.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/BurntHeadless.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/BurntHeadless_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/BurntHeadless_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/NormalHeadless.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/NormalHeadless.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/NormalHeadless_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/NormalHeadless_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/Tattoos.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/Tattoos.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/TattoosHeadless.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/TattoosHeadless.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/TattoosHeadless_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/TattoosHeadless_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/Tattoos_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/Tattoos_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/Warpaint.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/Warpaint.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/WarpaintHeadless.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/WarpaintHeadless.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/WarpaintHeadless_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/WarpaintHeadless_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/Warpaint_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/Warpaint_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/ZombieHeadless.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/ZombieHeadless.item -------------------------------------------------------------------------------- /Content/Data/Items/Skin/ZombieHeadless_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Skin/ZombieHeadless_fem.item -------------------------------------------------------------------------------- /Content/Data/Items/Waist/TacticalBelt.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Waist/TacticalBelt.item -------------------------------------------------------------------------------- /Content/Data/Items/Waist/TacticalBelt_fem.item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Items/Waist/TacticalBelt_fem.item -------------------------------------------------------------------------------- /Content/Data/Maps/Official/vs/Museum.sfdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Maps/Official/vs/Museum.sfdm -------------------------------------------------------------------------------- /Content/Data/Maps/Official/vs/Old Factory.sfdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Maps/Official/vs/Old Factory.sfdm -------------------------------------------------------------------------------- /Content/Data/Maps/Official/vs/Outpost.sfdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Maps/Official/vs/Outpost.sfdm -------------------------------------------------------------------------------- /Content/Data/Maps/Official/vs/Under The Bridge.sfdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Maps/Official/vs/Under The Bridge.sfdm -------------------------------------------------------------------------------- /Content/Data/Sounds/Music/FrozenBlood.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Sounds/Music/FrozenBlood.mp3 -------------------------------------------------------------------------------- /Content/Data/Sounds/Music/Metrolaw.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Sounds/Music/Metrolaw.mp3 -------------------------------------------------------------------------------- /Content/Data/Sounds/Sounds.sfds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Sounds/Sounds.sfds -------------------------------------------------------------------------------- /Content/Data/Sounds/Weapons/GLFire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Sounds/Weapons/GLFire.wav -------------------------------------------------------------------------------- /Content/Data/Sounds/Weapons/Gatling_spin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Sounds/Weapons/Gatling_spin.wav -------------------------------------------------------------------------------- /Content/Data/Sounds/Weapons/Gatling_wind_down.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Sounds/Weapons/Gatling_wind_down.wav -------------------------------------------------------------------------------- /Content/Data/Sounds/Weapons/Gatling_wind_up.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Sounds/Weapons/Gatling_wind_up.wav -------------------------------------------------------------------------------- /Content/Data/Sounds/Weapons/HeavyCharge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Sounds/Weapons/HeavyCharge.wav -------------------------------------------------------------------------------- /Content/Data/Sounds/Weapons/LightCharge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Sounds/Weapons/LightCharge.wav -------------------------------------------------------------------------------- /Content/Data/Sounds/Weapons/Sledgehammer.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Sounds/Weapons/Sledgehammer.wav -------------------------------------------------------------------------------- /Content/Data/Tiles/Materials/materials.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/Materials/materials.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/objects.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/objects.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/sfr_objects.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/sfr_objects.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/sfr_tiles.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/sfr_tiles.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/sfr_tilesBG.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/sfr_tilesBG.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/sfr_tilesFarBg.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/sfr_tilesFarBg.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/sfr_tilesS.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/sfr_tilesS.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/tiles.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/tiles.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/tilesBG.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/tilesBG.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/tilesE.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/tilesE.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/tilesFarBG.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/tilesFarBG.sfdx -------------------------------------------------------------------------------- /Content/Data/Tiles/tilesS.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Tiles/tilesS.sfdx -------------------------------------------------------------------------------- /Content/Data/Weapons/weapons.sfdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Content/Data/Weapons/weapons.sfdx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SFD/Box2D.XNA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFD/Box2D.XNA.dll -------------------------------------------------------------------------------- /SFD/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFD/Core.dll -------------------------------------------------------------------------------- /SFD/Lidgren.Network.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFD/Lidgren.Network.dll -------------------------------------------------------------------------------- /SFD/SFD.GameScriptInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFD/SFD.GameScriptInterface.dll -------------------------------------------------------------------------------- /SFD/SFD.Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFD/SFD.Input.dll -------------------------------------------------------------------------------- /SFD/SFD.ScriptEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFD/SFD.ScriptEngine.dll -------------------------------------------------------------------------------- /SFR/API/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/API/Engine.cs -------------------------------------------------------------------------------- /SFR/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/App.config -------------------------------------------------------------------------------- /SFR/Bootstrap/AnimationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Bootstrap/AnimationHandler.cs -------------------------------------------------------------------------------- /SFR/Bootstrap/Assets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Bootstrap/Assets.cs -------------------------------------------------------------------------------- /SFR/Debug/QuickStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Debug/QuickStartup.cs -------------------------------------------------------------------------------- /SFR/Editor/MapToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Editor/MapToken.cs -------------------------------------------------------------------------------- /SFR/Fighter/AnimHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/AnimHandler.cs -------------------------------------------------------------------------------- /SFR/Fighter/DevHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/DevHandler.cs -------------------------------------------------------------------------------- /SFR/Fighter/ExtendedPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/ExtendedPlayer.cs -------------------------------------------------------------------------------- /SFR/Fighter/GadgetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/GadgetHandler.cs -------------------------------------------------------------------------------- /SFR/Fighter/GoreHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/GoreHandler.cs -------------------------------------------------------------------------------- /SFR/Fighter/Jetpacks/GenericJetpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/Jetpacks/GenericJetpack.cs -------------------------------------------------------------------------------- /SFR/Fighter/Jetpacks/Gunpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/Jetpacks/Gunpack.cs -------------------------------------------------------------------------------- /SFR/Fighter/Jetpacks/Jetpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/Jetpacks/Jetpack.cs -------------------------------------------------------------------------------- /SFR/Fighter/Jetpacks/JetpackEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/Jetpacks/JetpackEditor.cs -------------------------------------------------------------------------------- /SFR/Fighter/Jetpacks/JetpackHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/Jetpacks/JetpackHandler.cs -------------------------------------------------------------------------------- /SFR/Fighter/Jetpacks/JetpackState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/Jetpacks/JetpackState.cs -------------------------------------------------------------------------------- /SFR/Fighter/Jetpacks/JetpackType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/Jetpacks/JetpackType.cs -------------------------------------------------------------------------------- /SFR/Fighter/NameIconHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/NameIconHandler.cs -------------------------------------------------------------------------------- /SFR/Fighter/PlayerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/PlayerHandler.cs -------------------------------------------------------------------------------- /SFR/Fighter/StatusBarHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Fighter/StatusBarHandler.cs -------------------------------------------------------------------------------- /SFR/Game/CommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Game/CommandHandler.cs -------------------------------------------------------------------------------- /SFR/Game/WorldHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Game/WorldHandler.cs -------------------------------------------------------------------------------- /SFR/Helper/ExtendedMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Helper/ExtendedMath.cs -------------------------------------------------------------------------------- /SFR/Helper/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Helper/Extensions.cs -------------------------------------------------------------------------------- /SFR/Helper/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Helper/Logger.cs -------------------------------------------------------------------------------- /SFR/Misc/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Misc/Globals.cs -------------------------------------------------------------------------------- /SFR/Misc/Tweaks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Misc/Tweaks.cs -------------------------------------------------------------------------------- /SFR/Objects/Animal/ObjectAnimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/Animal/ObjectAnimal.cs -------------------------------------------------------------------------------- /SFR/Objects/Animal/ObjectFroggy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/Animal/ObjectFroggy.cs -------------------------------------------------------------------------------- /SFR/Objects/Animal/ObjectMonkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/Animal/ObjectMonkey.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectCannon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectCannon.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectClaymoreThrown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectClaymoreThrown.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectCrossbowBolt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectCrossbowBolt.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectDoor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectDoor.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectFragGrenadeThrown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectFragGrenadeThrown.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectHead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectHead.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectImpactGrenadeThrown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectImpactGrenadeThrown.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectInvisibleBlockWeak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectInvisibleBlockWeak.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectPirateItemGiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectPirateItemGiver.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectPirateShip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectPirateShip.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectSnowballThrown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectSnowballThrown.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectStickyBombThrown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectStickyBombThrown.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectStickyProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectStickyProjectile.cs -------------------------------------------------------------------------------- /SFR/Objects/ObjectsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Objects/ObjectsHandler.cs -------------------------------------------------------------------------------- /SFR/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Program.cs -------------------------------------------------------------------------------- /SFR/Projectiles/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/Database.cs -------------------------------------------------------------------------------- /SFR/Projectiles/IExtendedProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/IExtendedProjectile.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileBarrett.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileBarrett.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileBlunderbuss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileBlunderbuss.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileCrossbow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileCrossbow.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileDoubleBarrel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileDoubleBarrel.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileFlintlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileFlintlock.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileMinigun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileMinigun.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileMusket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileMusket.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileNailGun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileNailGun.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileQuad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileQuad.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileRCM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileRCM.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileUnkemptHarold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileUnkemptHarold.cs -------------------------------------------------------------------------------- /SFR/Projectiles/ProjectileWinchester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Projectiles/ProjectileWinchester.cs -------------------------------------------------------------------------------- /SFR/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SFR/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SFR/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Properties/Resources.resx -------------------------------------------------------------------------------- /SFR/SFR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/SFR.csproj -------------------------------------------------------------------------------- /SFR/Sync/Generic/DataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Sync/Generic/DataType.cs -------------------------------------------------------------------------------- /SFR/Sync/Generic/GenericData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Sync/Generic/GenericData.cs -------------------------------------------------------------------------------- /SFR/Sync/Generic/GenericServerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Sync/Generic/GenericServerData.cs -------------------------------------------------------------------------------- /SFR/Sync/Generic/SyncFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Sync/Generic/SyncFlag.cs -------------------------------------------------------------------------------- /SFR/Sync/SyncHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Sync/SyncHandler.cs -------------------------------------------------------------------------------- /SFR/UI/CreditsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/UI/CreditsPanel.cs -------------------------------------------------------------------------------- /SFR/UI/MainMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/UI/MainMenu.cs -------------------------------------------------------------------------------- /SFR/UI/MenuItemLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/UI/MenuItemLabel.cs -------------------------------------------------------------------------------- /SFR/Weapons/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Database.cs -------------------------------------------------------------------------------- /SFR/Weapons/Handguns/Anaconda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Handguns/Anaconda.cs -------------------------------------------------------------------------------- /SFR/Weapons/Handguns/Flintlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Handguns/Flintlock.cs -------------------------------------------------------------------------------- /SFR/Weapons/Handguns/NailGun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Handguns/NailGun.cs -------------------------------------------------------------------------------- /SFR/Weapons/Handguns/StickyLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Handguns/StickyLauncher.cs -------------------------------------------------------------------------------- /SFR/Weapons/Handguns/UnkemptHarold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Handguns/UnkemptHarold.cs -------------------------------------------------------------------------------- /SFR/Weapons/IExtendedWeapon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/IExtendedWeapon.cs -------------------------------------------------------------------------------- /SFR/Weapons/ISharpMelee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/ISharpMelee.cs -------------------------------------------------------------------------------- /SFR/Weapons/Makeshift/Brick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Makeshift/Brick.cs -------------------------------------------------------------------------------- /SFR/Weapons/Makeshift/Broom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Makeshift/Broom.cs -------------------------------------------------------------------------------- /SFR/Weapons/Makeshift/CannonBall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Makeshift/CannonBall.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/Blade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/Blade.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/Caber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/Caber.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/Crowbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/Crowbar.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/Greatsword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/Greatsword.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/Morningstar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/Morningstar.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/ParryingDagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/ParryingDagger.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/Poleaxe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/Poleaxe.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/Rapier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/Rapier.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/RiotShield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/RiotShield.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/Scythe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/Scythe.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/Sledgehammer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/Sledgehammer.cs -------------------------------------------------------------------------------- /SFR/Weapons/Melee/Switchblade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Melee/Switchblade.cs -------------------------------------------------------------------------------- /SFR/Weapons/Others/AdrenalineBoost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Others/AdrenalineBoost.cs -------------------------------------------------------------------------------- /SFR/Weapons/Others/Gunpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Others/Gunpack.cs -------------------------------------------------------------------------------- /SFR/Weapons/Others/HealthPouch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Others/HealthPouch.cs -------------------------------------------------------------------------------- /SFR/Weapons/Others/Jetpack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Others/Jetpack.cs -------------------------------------------------------------------------------- /SFR/Weapons/Others/JetpackEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Others/JetpackEditor.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/AA12.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/AA12.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/AK47.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/AK47.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/Barrett.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/Barrett.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/Blunderbuss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/Blunderbuss.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/Crossbow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/Crossbow.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/DoubleBarrel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/DoubleBarrel.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/Minigun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/Minigun.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/Musket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/Musket.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/QuadLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/QuadLauncher.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/RCM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/RCM.cs -------------------------------------------------------------------------------- /SFR/Weapons/Rifles/Winchester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Rifles/Winchester.cs -------------------------------------------------------------------------------- /SFR/Weapons/Thrown/Claymore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Thrown/Claymore.cs -------------------------------------------------------------------------------- /SFR/Weapons/Thrown/FragGrenade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Thrown/FragGrenade.cs -------------------------------------------------------------------------------- /SFR/Weapons/Thrown/ImpactGrenade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Thrown/ImpactGrenade.cs -------------------------------------------------------------------------------- /SFR/Weapons/Thrown/Snowball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Thrown/Snowball.cs -------------------------------------------------------------------------------- /SFR/Weapons/Thrown/StickyBomb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/Weapons/Thrown/StickyBomb.cs -------------------------------------------------------------------------------- /SFR/build.bat: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SFR/build.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/build.example -------------------------------------------------------------------------------- /SFR/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/icon.ico -------------------------------------------------------------------------------- /SFR/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SFR/packages.config -------------------------------------------------------------------------------- /SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /Superfighters Redux.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/Superfighters Redux.sln -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.Avatar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.Avatar.dll -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.Content.Pipeline.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.Content.Pipeline.dll -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.Game.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.Game.dll -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.GamerServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.GamerServices.dll -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.Graphics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.Graphics.dll -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.Input.Touch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.Input.Touch.dll -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.Net.dll -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.Storage.dll -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.Video.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.Video.dll -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.Xact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.Xact.dll -------------------------------------------------------------------------------- /XNA/Microsoft.Xna.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/XNA/Microsoft.Xna.Framework.dll -------------------------------------------------------------------------------- /docs/Gore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/docs/Gore.gif -------------------------------------------------------------------------------- /docs/Logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/docs/Logo.gif -------------------------------------------------------------------------------- /docs/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/docs/Logo.png -------------------------------------------------------------------------------- /docs/SkinsFull.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/docs/SkinsFull.gif -------------------------------------------------------------------------------- /docs/SkinsPreview1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/docs/SkinsPreview1.gif -------------------------------------------------------------------------------- /docs/SkinsPreview2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/docs/SkinsPreview2.gif -------------------------------------------------------------------------------- /docs/Tiles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/docs/Tiles.gif -------------------------------------------------------------------------------- /docs/Weapons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Odex64/SFR/HEAD/docs/Weapons.gif -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | v.1.0.4 --------------------------------------------------------------------------------