diff --git a/2.5DHero/2.5DHero/Core/GameController.vb b/2.5DHero/2.5DHero/Core/GameController.vb index a35ea7f28..3c96ac78a 100644 --- a/2.5DHero/2.5DHero/Core/GameController.vb +++ b/2.5DHero/2.5DHero/Core/GameController.vb @@ -36,7 +36,7 @@ Public Class GameController ''' The name of the developer that appears on the title screen. ''' ''' - Public Const DEVELOPER_NAME As String = "Kolben Games" + Public Const DEVELOPER_NAME As String = "P3D Team" ''' ''' If the Debug Mode is active. diff --git a/2.5DHero/2.5DHero/Screens/MainMenu/SplashScreen.vb b/2.5DHero/2.5DHero/Screens/MainMenu/SplashScreen.vb index e9ed1d265..9e9ce1819 100644 --- a/2.5DHero/2.5DHero/Screens/MainMenu/SplashScreen.vb +++ b/2.5DHero/2.5DHero/Screens/MainMenu/SplashScreen.vb @@ -1,48 +1,59 @@ -Public Class SplashScreen +Imports System.Threading + +Friend Class SplashScreen Inherits Screen - Dim StartedLoad As Boolean = False - Dim Texture() As Texture2D - Dim Game As GameController - Dim LoadThread As Threading.Thread + Private Const LICENSE_TEXT As String = """MonoGame"", the MonoGame Logo and source code are copyrights of MonoGame Team (monogame.net)." + vbNewLine + + "Pokémon 3D is not affiliated with Nintendo, Creatures Inc. or GAME FREAK Inc." - Dim Delay As Single = 7.0F + Private ReadOnly _monoGameLogo As Texture2D + Private ReadOnly _licenseFont As SpriteFont + Private ReadOnly _licenseTextSize As Vector2 + + Private _delay As Single = 7.0F + Private _loadThread As Thread + Private _startedLoad As Boolean + Private _game As GameController Public Sub New(ByVal GameReference As GameController) - Me.Game = GameReference - Me.CanBePaused = False - Me.CanMuteMusic = False - Me.CanChat = False - Me.CanTakeScreenshot = False - Me.CanDrawDebug = False - Me.MouseVisible = True - Me.CanGoFullscreen = False + _game = GameReference - Me.Texture = {Nothing, Nothing} - Me.Texture(0) = Core.Content.Load(Of Texture2D)("GUI\Logos\KolbenBrand") - Me.Texture(1) = Core.Content.Load(Of Texture2D)("GUI\Logos\KolbenText") + CanBePaused = False + CanMuteMusic = False + CanChat = False + CanTakeScreenshot = False + CanDrawDebug = False + MouseVisible = True + CanGoFullscreen = False + + _monoGameLogo = Core.Content.Load(Of Texture2D)("GUI\Logos\MonoGame") + _licenseFont = Core.Content.Load(Of SpriteFont)("Fonts\BMP\mainFont") + _licenseTextSize = _licenseFont.MeasureString(LICENSE_TEXT) Me.Identification = Identifications.SplashScreen End Sub Public Overrides Sub Draw() - Canvas.DrawRectangle(Core.windowSize, New Color(164, 27, 27)) + Canvas.DrawRectangle(Core.windowSize, Color.Black) - Core.SpriteBatch.Draw(Me.Texture(0), New Rectangle(CInt(Core.windowSize.Width / 2) - CInt(Me.Texture(0).Width / 2), CInt(Core.windowSize.Height / 2) - CInt(Me.Texture(0).Height), Me.Texture(0).Width, Me.Texture(0).Height), Color.White) - Core.SpriteBatch.Draw(Me.Texture(1), New Rectangle(CInt(Core.windowSize.Width / 2) - CInt(Me.Texture(1).Width / 2), CInt(Core.windowSize.Height / 2) - CInt(Me.Texture(1).Height / 2) + CInt(Me.Texture(0).Height / 2), Me.Texture(1).Width, Me.Texture(1).Height), Color.White) + Core.SpriteBatch.Draw(_monoGameLogo, New Vector2(CSng(Core.windowSize.Width / 2 - _monoGameLogo.Width / 2), + CSng(Core.windowSize.Height / 2 - _monoGameLogo.Height / 2 - 50)), Color.White) + + Core.SpriteBatch.DrawString(_licenseFont, LICENSE_TEXT, New Vector2(CSng(Core.windowSize.Width / 2 - _licenseTextSize.X / 2), + CSng(Core.windowSize.Height - _licenseTextSize.Y - 50)), Color.White) End Sub Public Overrides Sub Update() - If StartedLoad = False Then - LoadThread = New Threading.Thread(AddressOf LoadContent) - LoadThread.Start() + If _startedLoad = False Then + _startedLoad = True - StartedLoad = True + _loadThread = New Thread(AddressOf LoadContent) + _loadThread.Start() End If - If LoadThread.IsAlive = False Then - If Delay <= 0.0F Or GameController.IS_DEBUG_ACTIVE = True Then + If _loadThread.IsAlive = False Then + If _delay <= 0.0F Or GameController.IS_DEBUG_ACTIVE = True Then Core.GraphicsManager.ApplyChanges() Logger.Debug("---Loading content ready---") @@ -56,7 +67,7 @@ End If End If - Delay -= 0.1F + _delay -= 0.1F End Sub Private Sub LoadContent() diff --git a/2.5DHero/2.5DHeroContent/2.5DHeroContent.contentproj b/2.5DHero/2.5DHeroContent/2.5DHeroContent.contentproj deleted file mode 100644 index 12156f0dc..000000000 --- a/2.5DHero/2.5DHeroContent/2.5DHeroContent.contentproj +++ /dev/null @@ -1,20391 +0,0 @@ - - - - {A2B85213-D17F-44BC-83C7-D7DDBB35B8E3} - {96E2B04D-8817-42c6-938A-82C39BA4D311};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Debug - x86 - Library - Properties - v4.0 - v4.0 - bin\$(Platform)\$(Configuration) - Content - SAK - SAK - SAK - SAK - - - x86 - - - x86 - - - _2._5DHeroContent - - - - - - - - - - - - Designer - miniFont - FontDescriptionImporter - FontDescriptionProcessor - - - barktown - Mp3Importer - SongProcessor - Low - - - burnedtower - Mp3Importer - SongProcessor - Low - - - cherrygrove - Mp3Importer - SongProcessor - Low - - - elmslab - Mp3Importer - SongProcessor - Low - - - goldenrod - Mp3Importer - SongProcessor - Low - - - lavender - Mp3Importer - SongProcessor - Low - - - mart - Mp3Importer - SongProcessor - Low - - - mary_encounter - Mp3Importer - SongProcessor - Low - - - oak_encounter - Mp3Importer - SongProcessor - Low - - - ride - Mp3Importer - SongProcessor - Low - - - RouteMusic1 - Mp3Importer - SongProcessor - Low - - - RouteMusic2 - Mp3Importer - SongProcessor - Low - - - RouteMusic3 - Mp3Importer - SongProcessor - Low - - - RouteMusic4 - Mp3Importer - SongProcessor - Low - - - RouteMusic5 - Mp3Importer - SongProcessor - Low - - - RouteMusic6 - Mp3Importer - SongProcessor - Low - - - show_me_around - Mp3Importer - SongProcessor - Low - - - trainer_encounter - Mp3Importer - SongProcessor - Low - - - violet - Mp3Importer - SongProcessor - Low - - - indigo - TextureImporter - TextureProcessor - - - Bruno - TextureImporter - TextureProcessor - - - Karen - TextureImporter - TextureProcessor - - - Koga - TextureImporter - TextureProcessor - - - Will - TextureImporter - TextureProcessor - - - portraits - TextureImporter - TextureProcessor - - - bubble - TextureImporter - TextureProcessor - - - rain - TextureImporter - TextureProcessor - - - snow - TextureImporter - TextureProcessor - - - - - Village - TextureImporter - TextureProcessor - - - - - Clouds - TextureImporter - TextureProcessor - - - - - Routes - TextureImporter - TextureProcessor - - - - - Sign - TextureImporter - TextureProcessor - - - - - barktown - Mp3Importer - SongProcessor - Low - - - - - BarkTown - TextureImporter - TextureProcessor - - - - - House - TextureImporter - TextureProcessor - - - - - Dark - TextureImporter - TextureProcessor - - - - - TextBox - TextureImporter - TextureProcessor - - - - - ChooseBox - TextureImporter - TextureProcessor - - - - - Cherrygrove - TextureImporter - TextureProcessor - - - - - SunRise - TextureImporter - TextureProcessor - - - - - AuroraBoralis - TextureImporter - TextureProcessor - - - - - Cave - TextureImporter - TextureProcessor - - - - - ItemSheet - TextureImporter - TextureProcessor - - - - - Menu - TextureImporter - TextureProcessor - - - - - PokemonMenu - TextureImporter - TextureProcessor - - - - - BagPack - TextureImporter - TextureProcessor - - - - - Types - TextureImporter - TextureProcessor - - - - - Berries - TextureImporter - TextureProcessor - - - - - 0 - TextureImporter - TextureProcessor - - - - - 28 - TextureImporter - TextureProcessor - - - - - 1 - TextureImporter - TextureProcessor - - - - - 14 - TextureImporter - TextureProcessor - - - - - 49 - TextureImporter - TextureProcessor - - - - - Cloud - TextureImporter - TextureProcessor - - - - - SunSet - TextureImporter - TextureProcessor - - - - - Center - TextureImporter - TextureProcessor - - - - - Intro - TextureImporter - TextureProcessor - - - - - Particles - TextureImporter - TextureProcessor - - - - - Lab - TextureImporter - TextureProcessor - - - - - title - Mp3Importer - SongProcessor - Low - - - - - cherrygrove - Mp3Importer - SongProcessor - Low - - - - - RouteMusic0 - Mp3Importer - SongProcessor - Low - - - - - RouteMusic1 - Mp3Importer - SongProcessor - Low - - - - - 61 - TextureImporter - TextureProcessor - - - - - center - Mp3Importer - SongProcessor - Low - - - - - 12 - TextureImporter - TextureProcessor - - - - - Pokeball - TextureImporter - TextureProcessor - - - - - 5 - TextureImporter - TextureProcessor - - - - - 62 - TextureImporter - TextureProcessor - - - - - violet - TextureImporter - TextureProcessor - - - - - 63 - TextureImporter - TextureProcessor - - - - - violet - Mp3Importer - SongProcessor - Low - - - - - 2 - TextureImporter - TextureProcessor - - - - - P3D - TextureImporter - TextureProcessor - - - - - 3 - TextureImporter - TextureProcessor - - - - - 4 - TextureImporter - TextureProcessor - - - - - johto_map - TextureImporter - TextureProcessor - - - - - map_objects - TextureImporter - TextureProcessor - - - - - Blue - TextureImporter - TextureProcessor - - - - - Red - TextureImporter - TextureProcessor - - - - - Mart - TextureImporter - TextureProcessor - - - - - Underwater - TextureImporter - TextureProcessor - - - - - Lavender - TextureImporter - TextureProcessor - - - - - lavender - Mp3Importer - SongProcessor - Low - - - - - slender - TextureImporter - TextureProcessor - - - - - 6 - TextureImporter - TextureProcessor - - - - - flash_overlay - TextureImporter - TextureProcessor - - - - - House2 - TextureImporter - TextureProcessor - - - - - 7 - TextureImporter - TextureProcessor - - - - - InGame - TextureImporter - FontTextureProcessor - - - - - chatFont - TextureImporter - FontTextureProcessor - - - - - mainFont - TextureImporter - FontTextureProcessor - - - - - Hilbert - TextureImporter - TextureProcessor - - - - - 8 - TextureImporter - TextureProcessor - - - - - Hilda - TextureImporter - TextureProcessor - - - - - EvolutionSpark - TextureImporter - TextureProcessor - - - - - Light - TextureImporter - TextureProcessor - - - - - - - - - Azalea - TextureImporter - TextureProcessor - - - - - Apricorn - TextureImporter - TextureProcessor - - - - - House3 - TextureImporter - TextureProcessor - - - - - Kurt - TextureImporter - TextureProcessor - - - - - Fire - TextureImporter - TextureProcessor - - - - - Hand - TextureImporter - TextureProcessor - - - - - Tackle - TextureImporter - TextureProcessor - - - - - Particle - TextureImporter - TextureProcessor - - - - - RedCircle - TextureImporter - TextureProcessor - - - - - YellowCloud - TextureImporter - TextureProcessor - - - - - EmberBall - TextureImporter - TextureProcessor - - - - - rain2 - TextureImporter - TextureProcessor - - - - - rain3 - TextureImporter - TextureProcessor - - - - - snow2 - TextureImporter - TextureProcessor - - - - - GoldRetro - TextureImporter - TextureProcessor - - - - - statDown - TextureImporter - TextureProcessor - - - statUp - TextureImporter - TextureProcessor - - - - - johto_wild - Mp3Importer - SongProcessor - Low - - - - - Ethan - TextureImporter - TextureProcessor - - - - - johto_wild_intro - Mp3Importer - SongProcessor - Low - - - - - oak - TextureImporter - TextureProcessor - - - oldhatman - TextureImporter - TextureProcessor - - - - - Gym - TextureImporter - TextureProcessor - - - - - gym - Mp3Importer - SongProcessor - Low - - - - - dark_cave - Mp3Importer - SongProcessor - Low - - - - - show_me_around - Mp3Importer - SongProcessor - Low - - - - - pokemon_heal - Mp3Importer - SoundEffectProcessor - Low - - - - - item_found - Mp3Importer - SoundEffectProcessor - Low - - - - - Sudowoodo - TextureImporter - TextureProcessor - - - - - WoodTower - TextureImporter - TextureProcessor - - - - - Elder - TextureImporter - TextureProcessor - - - OldLady - TextureImporter - TextureProcessor - - - PinkShirtGirl - TextureImporter - TextureProcessor - - - Sage - TextureImporter - TextureProcessor - - - - - bugcatcher - TextureImporter - TextureProcessor - - - - - sprout_tower - Mp3Importer - SongProcessor - Low - - - - - johto_trainer - Mp3Importer - SongProcessor - Low - - - - - Unown - TextureImporter - FontTextureProcessor - - - - - trainer_defeat - Mp3Importer - SongProcessor - Low - - - - - Rattata - TextureImporter - TextureProcessor - - - - - emoticons - TextureImporter - TextureProcessor - - - - - johto_rival - Mp3Importer - SongProcessor - Low - - - johto_rivalintro - Mp3Importer - SongProcessor - Low - - - johto_rival_encounter - Mp3Importer - SongProcessor - Low - - - - - trainer_encounter - Mp3Importer - SongProcessor - Low - - - - - 1 - Mp3Importer - SoundEffectProcessor - Low - - - 2 - Mp3Importer - SoundEffectProcessor - Low - - - 3 - Mp3Importer - SoundEffectProcessor - Low - - - 4 - Mp3Importer - SoundEffectProcessor - Low - - - 5 - Mp3Importer - SoundEffectProcessor - Low - - - 6 - Mp3Importer - SoundEffectProcessor - Low - - - 7 - Mp3Importer - SoundEffectProcessor - Low - - - 8 - Mp3Importer - SoundEffectProcessor - Low - - - 9 - Mp3Importer - SoundEffectProcessor - Low - - - - - 10 - Mp3Importer - SoundEffectProcessor - Low - - - 11 - Mp3Importer - SoundEffectProcessor - Low - - - 12 - Mp3Importer - SoundEffectProcessor - Low - - - 13 - Mp3Importer - SoundEffectProcessor - Low - - - 14 - Mp3Importer - SoundEffectProcessor - Low - - - 15 - Mp3Importer - SoundEffectProcessor - Low - - - 16 - Mp3Importer - SoundEffectProcessor - Low - - - 17 - Mp3Importer - SoundEffectProcessor - Low - - - 18 - Mp3Importer - SoundEffectProcessor - Low - - - 19 - Mp3Importer - SoundEffectProcessor - Low - - - - - 20 - Mp3Importer - SoundEffectProcessor - Low - - - 21 - Mp3Importer - SoundEffectProcessor - Low - - - 22 - Mp3Importer - SoundEffectProcessor - Low - - - 23 - Mp3Importer - SoundEffectProcessor - Low - - - 24 - Mp3Importer - SoundEffectProcessor - Low - - - 25 - Mp3Importer - SoundEffectProcessor - Low - - - 26 - Mp3Importer - SoundEffectProcessor - Low - - - 27 - Mp3Importer - SoundEffectProcessor - Low - - - 28 - Mp3Importer - SoundEffectProcessor - Low - - - 29 - Mp3Importer - SoundEffectProcessor - Low - - - 30 - Mp3Importer - SoundEffectProcessor - Low - - - 31 - Mp3Importer - SoundEffectProcessor - Low - - - 32 - Mp3Importer - SoundEffectProcessor - Low - - - 33 - Mp3Importer - SoundEffectProcessor - Low - - - 34 - Mp3Importer - SoundEffectProcessor - Low - - - 35 - Mp3Importer - SoundEffectProcessor - Low - - - 36 - Mp3Importer - SoundEffectProcessor - Low - - - 37 - Mp3Importer - SoundEffectProcessor - Low - - - 38 - Mp3Importer - SoundEffectProcessor - Low - - - 39 - Mp3Importer - SoundEffectProcessor - Low - - - 40 - Mp3Importer - SoundEffectProcessor - Low - - - 41 - Mp3Importer - SoundEffectProcessor - Low - - - 42 - Mp3Importer - SoundEffectProcessor - Low - - - 43 - Mp3Importer - SoundEffectProcessor - Low - - - 44 - Mp3Importer - SoundEffectProcessor - Low - - - 45 - Mp3Importer - SoundEffectProcessor - Low - - - 46 - Mp3Importer - SoundEffectProcessor - Low - - - 47 - Mp3Importer - SoundEffectProcessor - Low - - - 48 - Mp3Importer - SoundEffectProcessor - Low - - - 49 - Mp3Importer - SoundEffectProcessor - Low - - - 50 - Mp3Importer - SoundEffectProcessor - Low - - - 51 - Mp3Importer - SoundEffectProcessor - Low - - - 52 - Mp3Importer - SoundEffectProcessor - Low - - - 53 - Mp3Importer - SoundEffectProcessor - Low - - - 54 - Mp3Importer - SoundEffectProcessor - Low - - - 55 - Mp3Importer - SoundEffectProcessor - Low - - - - - 69 - Mp3Importer - SoundEffectProcessor - Low - - - - - 163 - Mp3Importer - SoundEffectProcessor - Low - - - - - 187 - Mp3Importer - SoundEffectProcessor - Low - - - - - wild_defeat - Mp3Importer - SongProcessor - Low - - - - - johto_trainer_intro - Mp3Importer - SongProcessor - Low - - - - - 9 - TextureImporter - TextureProcessor - - - Falkner - TextureImporter - TextureProcessor - - - - - johto_leader - Mp3Importer - SongProcessor - Low - - - johto_leader_intro - Mp3Importer - SongProcessor - Low - - - - - leader_defeat - Mp3Importer - SongProcessor - Low - - - - - Badges - TextureImporter - TextureProcessor - - - - - 10 - TextureImporter - TextureProcessor - - - - - 100 - Mp3Importer - SoundEffectProcessor - Low - - - 101 - Mp3Importer - SoundEffectProcessor - Low - - - 102 - Mp3Importer - SoundEffectProcessor - Low - - - 103 - Mp3Importer - SoundEffectProcessor - Low - - - 104 - Mp3Importer - SoundEffectProcessor - Low - - - 105 - Mp3Importer - SoundEffectProcessor - Low - - - 106 - Mp3Importer - SoundEffectProcessor - Low - - - 107 - Mp3Importer - SoundEffectProcessor - Low - - - 108 - Mp3Importer - SoundEffectProcessor - Low - - - 109 - Mp3Importer - SoundEffectProcessor - Low - - - 110 - Mp3Importer - SoundEffectProcessor - Low - - - 111 - Mp3Importer - SoundEffectProcessor - Low - - - 112 - Mp3Importer - SoundEffectProcessor - Low - - - 113 - Mp3Importer - SoundEffectProcessor - Low - - - 114 - Mp3Importer - SoundEffectProcessor - Low - - - 115 - Mp3Importer - SoundEffectProcessor - Low - - - 116 - Mp3Importer - SoundEffectProcessor - Low - - - 117 - Mp3Importer - SoundEffectProcessor - Low - - - 118 - Mp3Importer - SoundEffectProcessor - Low - - - 119 - Mp3Importer - SoundEffectProcessor - Low - - - 120 - Mp3Importer - SoundEffectProcessor - Low - - - 121 - Mp3Importer - SoundEffectProcessor - Low - - - 122 - Mp3Importer - SoundEffectProcessor - Low - - - 123 - Mp3Importer - SoundEffectProcessor - Low - - - 124 - Mp3Importer - SoundEffectProcessor - Low - - - 125 - Mp3Importer - SoundEffectProcessor - Low - - - 126 - Mp3Importer - SoundEffectProcessor - Low - - - 127 - Mp3Importer - SoundEffectProcessor - Low - - - 128 - Mp3Importer - SoundEffectProcessor - Low - - - 129 - Mp3Importer - SoundEffectProcessor - Low - - - 130 - Mp3Importer - SoundEffectProcessor - Low - - - 131 - Mp3Importer - SoundEffectProcessor - Low - - - 132 - Mp3Importer - SoundEffectProcessor - Low - - - 133 - Mp3Importer - SoundEffectProcessor - Low - - - 134 - Mp3Importer - SoundEffectProcessor - Low - - - 135 - Mp3Importer - SoundEffectProcessor - Low - - - 136 - Mp3Importer - SoundEffectProcessor - Low - - - 137 - Mp3Importer - SoundEffectProcessor - Low - - - 138 - Mp3Importer - SoundEffectProcessor - Low - - - 139 - Mp3Importer - SoundEffectProcessor - Low - - - 140 - Mp3Importer - SoundEffectProcessor - Low - - - 141 - Mp3Importer - SoundEffectProcessor - Low - - - 142 - Mp3Importer - SoundEffectProcessor - Low - - - 143 - Mp3Importer - SoundEffectProcessor - Low - - - 144 - Mp3Importer - SoundEffectProcessor - Low - - - 145 - Mp3Importer - SoundEffectProcessor - Low - - - 146 - Mp3Importer - SoundEffectProcessor - Low - - - 147 - Mp3Importer - SoundEffectProcessor - Low - - - 148 - Mp3Importer - SoundEffectProcessor - Low - - - 149 - Mp3Importer - SoundEffectProcessor - Low - - - 150 - Mp3Importer - SoundEffectProcessor - Low - - - 151 - Mp3Importer - SoundEffectProcessor - Low - - - 152 - Mp3Importer - SoundEffectProcessor - Low - - - 153 - Mp3Importer - SoundEffectProcessor - Low - - - 154 - Mp3Importer - SoundEffectProcessor - Low - - - 155 - Mp3Importer - SoundEffectProcessor - Low - - - 156 - Mp3Importer - SoundEffectProcessor - Low - - - 157 - Mp3Importer - SoundEffectProcessor - Low - - - 158 - Mp3Importer - SoundEffectProcessor - Low - - - 159 - Mp3Importer - SoundEffectProcessor - Low - - - 160 - Mp3Importer - SoundEffectProcessor - Low - - - 161 - Mp3Importer - SoundEffectProcessor - Low - - - 162 - Mp3Importer - SoundEffectProcessor - Low - - - 164 - Mp3Importer - SoundEffectProcessor - Low - - - 165 - Mp3Importer - SoundEffectProcessor - Low - - - 166 - Mp3Importer - SoundEffectProcessor - Low - - - 167 - Mp3Importer - SoundEffectProcessor - Low - - - 168 - Mp3Importer - SoundEffectProcessor - Low - - - 169 - Mp3Importer - SoundEffectProcessor - Low - - - 170 - Mp3Importer - SoundEffectProcessor - Low - - - 171 - Mp3Importer - SoundEffectProcessor - Low - - - 172 - Mp3Importer - SoundEffectProcessor - Low - - - 173 - Mp3Importer - SoundEffectProcessor - Low - - - 174 - Mp3Importer - SoundEffectProcessor - Low - - - 175 - Mp3Importer - SoundEffectProcessor - Low - - - 176 - Mp3Importer - SoundEffectProcessor - Low - - - 177 - Mp3Importer - SoundEffectProcessor - Low - - - 178 - Mp3Importer - SoundEffectProcessor - Low - - - 179 - Mp3Importer - SoundEffectProcessor - Low - - - 180 - Mp3Importer - SoundEffectProcessor - Low - - - 181 - Mp3Importer - SoundEffectProcessor - Low - - - 182 - Mp3Importer - SoundEffectProcessor - Low - - - 183 - Mp3Importer - SoundEffectProcessor - Low - - - 184 - Mp3Importer - SoundEffectProcessor - Low - - - 185 - Mp3Importer - SoundEffectProcessor - Low - - - 186 - Mp3Importer - SoundEffectProcessor - Low - - - 188 - Mp3Importer - SoundEffectProcessor - Low - - - 189 - Mp3Importer - SoundEffectProcessor - Low - - - 190 - Mp3Importer - SoundEffectProcessor - Low - - - 191 - Mp3Importer - SoundEffectProcessor - Low - - - 192 - Mp3Importer - SoundEffectProcessor - Low - - - 193 - Mp3Importer - SoundEffectProcessor - Low - - - 194 - Mp3Importer - SoundEffectProcessor - Low - - - 195 - Mp3Importer - SoundEffectProcessor - Low - - - 196 - Mp3Importer - SoundEffectProcessor - Low - - - 197 - Mp3Importer - SoundEffectProcessor - Low - - - 198 - Mp3Importer - SoundEffectProcessor - Low - - - 199 - Mp3Importer - SoundEffectProcessor - Low - - - 200 - Mp3Importer - SoundEffectProcessor - Low - - - 201 - Mp3Importer - SoundEffectProcessor - Low - - - 202 - Mp3Importer - SoundEffectProcessor - Low - - - 203 - Mp3Importer - SoundEffectProcessor - Low - - - 204 - Mp3Importer - SoundEffectProcessor - Low - - - 205 - Mp3Importer - SoundEffectProcessor - Low - - - 206 - Mp3Importer - SoundEffectProcessor - Low - - - 207 - Mp3Importer - SoundEffectProcessor - Low - - - 208 - Mp3Importer - SoundEffectProcessor - Low - - - 209 - Mp3Importer - SoundEffectProcessor - Low - - - 210 - Mp3Importer - SoundEffectProcessor - Low - - - 211 - Mp3Importer - SoundEffectProcessor - Low - - - 212 - Mp3Importer - SoundEffectProcessor - Low - - - 213 - Mp3Importer - SoundEffectProcessor - Low - - - 214 - Mp3Importer - SoundEffectProcessor - Low - - - 215 - Mp3Importer - SoundEffectProcessor - Low - - - 216 - Mp3Importer - SoundEffectProcessor - Low - - - 217 - Mp3Importer - SoundEffectProcessor - Low - - - 218 - Mp3Importer - SoundEffectProcessor - Low - - - 219 - Mp3Importer - SoundEffectProcessor - Low - - - 220 - Mp3Importer - SoundEffectProcessor - Low - - - 221 - Mp3Importer - SoundEffectProcessor - Low - - - 222 - Mp3Importer - SoundEffectProcessor - Low - - - 223 - Mp3Importer - SoundEffectProcessor - Low - - - 224 - Mp3Importer - SoundEffectProcessor - Low - - - 225 - Mp3Importer - SoundEffectProcessor - Low - - - 226 - Mp3Importer - SoundEffectProcessor - Low - - - 227 - Mp3Importer - SoundEffectProcessor - Low - - - 228 - Mp3Importer - SoundEffectProcessor - Low - - - 229 - Mp3Importer - SoundEffectProcessor - Low - - - 230 - Mp3Importer - SoundEffectProcessor - Low - - - 231 - Mp3Importer - SoundEffectProcessor - Low - - - 232 - Mp3Importer - SoundEffectProcessor - Low - - - 233 - Mp3Importer - SoundEffectProcessor - Low - - - 234 - Mp3Importer - SoundEffectProcessor - Low - - - 235 - Mp3Importer - SoundEffectProcessor - Low - - - 236 - Mp3Importer - SoundEffectProcessor - Low - - - 237 - Mp3Importer - SoundEffectProcessor - Low - - - 238 - Mp3Importer - SoundEffectProcessor - Low - - - 239 - Mp3Importer - SoundEffectProcessor - Low - - - 240 - Mp3Importer - SoundEffectProcessor - Low - - - 241 - Mp3Importer - SoundEffectProcessor - Low - - - 242 - Mp3Importer - SoundEffectProcessor - Low - - - 243 - Mp3Importer - SoundEffectProcessor - Low - - - 244 - Mp3Importer - SoundEffectProcessor - Low - - - 245 - Mp3Importer - SoundEffectProcessor - Low - - - 246 - Mp3Importer - SoundEffectProcessor - Low - - - 247 - Mp3Importer - SoundEffectProcessor - Low - - - 248 - Mp3Importer - SoundEffectProcessor - Low - - - 249 - Mp3Importer - SoundEffectProcessor - Low - - - 250 - Mp3Importer - SoundEffectProcessor - Low - - - 251 - Mp3Importer - SoundEffectProcessor - Low - - - 56 - Mp3Importer - SoundEffectProcessor - Low - - - 57 - Mp3Importer - SoundEffectProcessor - Low - - - 58 - Mp3Importer - SoundEffectProcessor - Low - - - 59 - Mp3Importer - SoundEffectProcessor - Low - - - 60 - Mp3Importer - SoundEffectProcessor - Low - - - 61 - Mp3Importer - SoundEffectProcessor - Low - - - 62 - Mp3Importer - SoundEffectProcessor - Low - - - 63 - Mp3Importer - SoundEffectProcessor - Low - - - 64 - Mp3Importer - SoundEffectProcessor - Low - - - 65 - Mp3Importer - SoundEffectProcessor - Low - - - 66 - Mp3Importer - SoundEffectProcessor - Low - - - 67 - Mp3Importer - SoundEffectProcessor - Low - - - 68 - Mp3Importer - SoundEffectProcessor - Low - - - 70 - Mp3Importer - SoundEffectProcessor - Low - - - 71 - Mp3Importer - SoundEffectProcessor - Low - - - 72 - Mp3Importer - SoundEffectProcessor - Low - - - 73 - Mp3Importer - SoundEffectProcessor - Low - - - 74 - Mp3Importer - SoundEffectProcessor - Low - - - 75 - Mp3Importer - SoundEffectProcessor - Low - - - 76 - Mp3Importer - SoundEffectProcessor - Low - - - 77 - Mp3Importer - SoundEffectProcessor - Low - - - 78 - Mp3Importer - SoundEffectProcessor - Low - - - 79 - Mp3Importer - SoundEffectProcessor - Low - - - 80 - Mp3Importer - SoundEffectProcessor - Low - - - 81 - Mp3Importer - SoundEffectProcessor - Low - - - 82 - Mp3Importer - SoundEffectProcessor - Low - - - 83 - Mp3Importer - SoundEffectProcessor - Low - - - 84 - Mp3Importer - SoundEffectProcessor - Low - - - 85 - Mp3Importer - SoundEffectProcessor - Low - - - 86 - Mp3Importer - SoundEffectProcessor - Low - - - 87 - Mp3Importer - SoundEffectProcessor - Low - - - 88 - Mp3Importer - SoundEffectProcessor - Low - - - 89 - Mp3Importer - SoundEffectProcessor - Low - - - 90 - Mp3Importer - SoundEffectProcessor - Low - - - 91 - Mp3Importer - SoundEffectProcessor - Low - - - 92 - Mp3Importer - SoundEffectProcessor - Low - - - 93 - Mp3Importer - SoundEffectProcessor - Low - - - 94 - Mp3Importer - SoundEffectProcessor - Low - - - 95 - Mp3Importer - SoundEffectProcessor - Low - - - 96 - Mp3Importer - SoundEffectProcessor - Low - - - 97 - Mp3Importer - SoundEffectProcessor - Low - - - 98 - Mp3Importer - SoundEffectProcessor - Low - - - 99 - Mp3Importer - SoundEffectProcessor - Low - - - - - 11 - TextureImporter - TextureProcessor - - - - - 13 - TextureImporter - TextureProcessor - - - - - 15 - TextureImporter - TextureProcessor - - - - - Pidgey - TextureImporter - TextureProcessor - - - - - 16 - TextureImporter - TextureProcessor - - - 17 - TextureImporter - TextureProcessor - - - - - 18 - TextureImporter - TextureProcessor - - - - - 19 - TextureImporter - TextureProcessor - - - - - Status - TextureImporter - TextureProcessor - - - - - 20 - TextureImporter - TextureProcessor - - - 21 - TextureImporter - TextureProcessor - - - - - SecretBase - TextureImporter - TextureProcessor - - - - - GruntF - TextureImporter - TextureProcessor - - - GruntM - TextureImporter - TextureProcessor - - - Proton - TextureImporter - TextureProcessor - - - Slowpoke - TextureImporter - TextureProcessor - - - - - johto_rocket - Mp3Importer - SongProcessor - Low - - - johto_rocket_intro - Mp3Importer - SongProcessor - Low - - - - - Bugsy - TextureImporter - TextureProcessor - - - GymGuy - TextureImporter - TextureProcessor - - - LittleGirl - TextureImporter - TextureProcessor - - - - - azalea - Mp3Importer - SongProcessor - Low - - - - - Farfetch%27d - TextureImporter - TextureProcessor - - - - - badge_acquired - Mp3Importer - SoundEffectProcessor - Low - - - - - IlexForest - Mp3Importer - SongProcessor - Low - - - - - 22 - TextureImporter - TextureProcessor - - - - - Save - Mp3Importer - SoundEffectProcessor - Low - - - - - Goldenrod - TextureImporter - TextureProcessor - - - - - 1 - TextureImporter - TextureProcessor - - - 10 - TextureImporter - TextureProcessor - - - 100 - TextureImporter - TextureProcessor - - - 101 - TextureImporter - TextureProcessor - - - 102 - TextureImporter - TextureProcessor - - - 103 - TextureImporter - TextureProcessor - - - 104 - TextureImporter - TextureProcessor - - - 105 - TextureImporter - TextureProcessor - - - 106 - TextureImporter - TextureProcessor - - - 107 - TextureImporter - TextureProcessor - - - 108 - TextureImporter - TextureProcessor - - - 109 - TextureImporter - TextureProcessor - - - 11 - TextureImporter - TextureProcessor - - - 110 - TextureImporter - TextureProcessor - - - 111 - TextureImporter - TextureProcessor - - - 112 - TextureImporter - TextureProcessor - - - 113 - TextureImporter - TextureProcessor - - - 114 - TextureImporter - TextureProcessor - - - 115 - TextureImporter - TextureProcessor - - - 116 - TextureImporter - TextureProcessor - - - 117 - TextureImporter - TextureProcessor - - - 118 - TextureImporter - TextureProcessor - - - 119 - TextureImporter - TextureProcessor - - - 12 - TextureImporter - TextureProcessor - - - 120 - TextureImporter - TextureProcessor - - - 121 - TextureImporter - TextureProcessor - - - 122 - TextureImporter - TextureProcessor - - - 123 - TextureImporter - TextureProcessor - - - 124 - TextureImporter - TextureProcessor - - - 125 - TextureImporter - TextureProcessor - - - 126 - TextureImporter - TextureProcessor - - - 127 - TextureImporter - TextureProcessor - - - 128 - TextureImporter - TextureProcessor - - - 129 - TextureImporter - TextureProcessor - - - 13 - TextureImporter - TextureProcessor - - - 130 - TextureImporter - TextureProcessor - - - 131 - TextureImporter - TextureProcessor - - - 132 - TextureImporter - TextureProcessor - - - 133 - TextureImporter - TextureProcessor - - - 134 - TextureImporter - TextureProcessor - - - 135 - TextureImporter - TextureProcessor - - - 136 - TextureImporter - TextureProcessor - - - 137 - TextureImporter - TextureProcessor - - - 138 - TextureImporter - TextureProcessor - - - 139 - TextureImporter - TextureProcessor - - - 14 - TextureImporter - TextureProcessor - - - 140 - TextureImporter - TextureProcessor - - - 141 - TextureImporter - TextureProcessor - - - 142 - TextureImporter - TextureProcessor - - - 143 - TextureImporter - TextureProcessor - - - 144 - TextureImporter - TextureProcessor - - - 145 - TextureImporter - TextureProcessor - - - 146 - TextureImporter - TextureProcessor - - - 147 - TextureImporter - TextureProcessor - - - 148 - TextureImporter - TextureProcessor - - - 149 - TextureImporter - TextureProcessor - - - 15 - TextureImporter - TextureProcessor - - - 150 - TextureImporter - TextureProcessor - - - 151 - TextureImporter - TextureProcessor - - - 152 - TextureImporter - TextureProcessor - - - 153 - TextureImporter - TextureProcessor - - - 154 - TextureImporter - TextureProcessor - - - 155 - TextureImporter - TextureProcessor - - - 156 - TextureImporter - TextureProcessor - - - 157 - TextureImporter - TextureProcessor - - - 158 - TextureImporter - TextureProcessor - - - 159 - TextureImporter - TextureProcessor - - - 16 - TextureImporter - TextureProcessor - - - 160 - TextureImporter - TextureProcessor - - - 161 - TextureImporter - TextureProcessor - - - 162 - TextureImporter - TextureProcessor - - - 163 - TextureImporter - TextureProcessor - - - 164 - TextureImporter - TextureProcessor - - - 165 - TextureImporter - TextureProcessor - - - 166 - TextureImporter - TextureProcessor - - - 167 - TextureImporter - TextureProcessor - - - 168 - TextureImporter - TextureProcessor - - - 169 - TextureImporter - TextureProcessor - - - 17 - TextureImporter - TextureProcessor - - - 170 - TextureImporter - TextureProcessor - - - 171 - TextureImporter - TextureProcessor - - - 172_spiky-eared - TextureImporter - TextureProcessor - - - 172 - TextureImporter - TextureProcessor - - - 173 - TextureImporter - TextureProcessor - - - 174 - TextureImporter - TextureProcessor - - - 175 - TextureImporter - TextureProcessor - - - 176 - TextureImporter - TextureProcessor - - - 177 - TextureImporter - TextureProcessor - - - 178 - TextureImporter - TextureProcessor - - - 179 - TextureImporter - TextureProcessor - - - 18 - TextureImporter - TextureProcessor - - - 180 - TextureImporter - TextureProcessor - - - 181 - TextureImporter - TextureProcessor - - - 182 - TextureImporter - TextureProcessor - - - 183 - TextureImporter - TextureProcessor - - - 184 - TextureImporter - TextureProcessor - - - 185 - TextureImporter - TextureProcessor - - - 186 - TextureImporter - TextureProcessor - - - 187 - TextureImporter - TextureProcessor - - - 188 - TextureImporter - TextureProcessor - - - 189 - TextureImporter - TextureProcessor - - - 19 - TextureImporter - TextureProcessor - - - 190 - TextureImporter - TextureProcessor - - - 191 - TextureImporter - TextureProcessor - - - 192 - TextureImporter - TextureProcessor - - - 193 - TextureImporter - TextureProcessor - - - 194 - TextureImporter - TextureProcessor - - - 195 - TextureImporter - TextureProcessor - - - 196 - TextureImporter - TextureProcessor - - - 197 - TextureImporter - TextureProcessor - - - 198 - TextureImporter - TextureProcessor - - - 199 - TextureImporter - TextureProcessor - - - 2 - TextureImporter - TextureProcessor - - - 20 - TextureImporter - TextureProcessor - - - 200 - TextureImporter - TextureProcessor - - - 201-a - TextureImporter - TextureProcessor - - - 201-b - TextureImporter - TextureProcessor - - - 201-c - TextureImporter - TextureProcessor - - - 201-d - TextureImporter - TextureProcessor - - - 201-e - TextureImporter - TextureProcessor - - - 201-exclamation - TextureImporter - TextureProcessor - - - 201-f - TextureImporter - TextureProcessor - - - 201-g - TextureImporter - TextureProcessor - - - 201-h - TextureImporter - TextureProcessor - - - 201-i - TextureImporter - TextureProcessor - - - 201-j - TextureImporter - TextureProcessor - - - 201-k - TextureImporter - TextureProcessor - - - 201-l - TextureImporter - TextureProcessor - - - 201-m - TextureImporter - TextureProcessor - - - 201-n - TextureImporter - TextureProcessor - - - 201-o - TextureImporter - TextureProcessor - - - 201-p - TextureImporter - TextureProcessor - - - 201-q - TextureImporter - TextureProcessor - - - 201-question - TextureImporter - TextureProcessor - - - 201-r - TextureImporter - TextureProcessor - - - 201-s - TextureImporter - TextureProcessor - - - 201-t - TextureImporter - TextureProcessor - - - 201-u - TextureImporter - TextureProcessor - - - 201-v - TextureImporter - TextureProcessor - - - 201-w - TextureImporter - TextureProcessor - - - 201-x - TextureImporter - TextureProcessor - - - 201-y - TextureImporter - TextureProcessor - - - 201-z - TextureImporter - TextureProcessor - - - 201 - TextureImporter - TextureProcessor - - - 202 - TextureImporter - TextureProcessor - - - 203 - TextureImporter - TextureProcessor - - - 204 - TextureImporter - TextureProcessor - - - 205 - TextureImporter - TextureProcessor - - - 206 - TextureImporter - TextureProcessor - - - 207 - TextureImporter - TextureProcessor - - - 208 - TextureImporter - TextureProcessor - - - 209 - TextureImporter - TextureProcessor - - - 21 - TextureImporter - TextureProcessor - - - 210 - TextureImporter - TextureProcessor - - - 211 - TextureImporter - TextureProcessor - - - 212 - TextureImporter - TextureProcessor - - - 213 - TextureImporter - TextureProcessor - - - 214 - TextureImporter - TextureProcessor - - - 215 - TextureImporter - TextureProcessor - - - 216 - TextureImporter - TextureProcessor - - - 217 - TextureImporter - TextureProcessor - - - 218 - TextureImporter - TextureProcessor - - - 219 - TextureImporter - TextureProcessor - - - 22 - TextureImporter - TextureProcessor - - - 220 - TextureImporter - TextureProcessor - - - 221 - TextureImporter - TextureProcessor - - - 222 - TextureImporter - TextureProcessor - - - 223 - TextureImporter - TextureProcessor - - - 224 - TextureImporter - TextureProcessor - - - 225 - TextureImporter - TextureProcessor - - - 226 - TextureImporter - TextureProcessor - - - 227 - TextureImporter - TextureProcessor - - - 228 - TextureImporter - TextureProcessor - - - 229 - TextureImporter - TextureProcessor - - - 23 - TextureImporter - TextureProcessor - - - 230 - TextureImporter - TextureProcessor - - - 231 - TextureImporter - TextureProcessor - - - 232 - TextureImporter - TextureProcessor - - - 233 - TextureImporter - TextureProcessor - - - 234 - TextureImporter - TextureProcessor - - - 235 - TextureImporter - TextureProcessor - - - 236 - TextureImporter - TextureProcessor - - - 237 - TextureImporter - TextureProcessor - - - 238 - TextureImporter - TextureProcessor - - - 239 - TextureImporter - TextureProcessor - - - 24 - TextureImporter - TextureProcessor - - - 240 - TextureImporter - TextureProcessor - - - 241 - TextureImporter - TextureProcessor - - - 242 - TextureImporter - TextureProcessor - - - 243 - TextureImporter - TextureProcessor - - - 244 - TextureImporter - TextureProcessor - - - 245 - TextureImporter - TextureProcessor - - - 246 - TextureImporter - TextureProcessor - - - 247 - TextureImporter - TextureProcessor - - - 248 - TextureImporter - TextureProcessor - - - 249 - TextureImporter - TextureProcessor - - - 25 - TextureImporter - TextureProcessor - - - 250 - TextureImporter - TextureProcessor - - - 251 - TextureImporter - TextureProcessor - - - 26 - TextureImporter - TextureProcessor - - - 27 - TextureImporter - TextureProcessor - - - 28 - TextureImporter - TextureProcessor - - - 29 - TextureImporter - TextureProcessor - - - 3 - TextureImporter - TextureProcessor - - - 30 - TextureImporter - TextureProcessor - - - 31 - TextureImporter - TextureProcessor - - - 32 - TextureImporter - TextureProcessor - - - 33 - TextureImporter - TextureProcessor - - - 34 - TextureImporter - TextureProcessor - - - 35 - TextureImporter - TextureProcessor - - - 36 - TextureImporter - TextureProcessor - - - 37 - TextureImporter - TextureProcessor - - - 38 - TextureImporter - TextureProcessor - - - 39 - TextureImporter - TextureProcessor - - - 4 - TextureImporter - TextureProcessor - - - 40 - TextureImporter - TextureProcessor - - - 41 - TextureImporter - TextureProcessor - - - 42 - TextureImporter - TextureProcessor - - - 43 - TextureImporter - TextureProcessor - - - 44 - TextureImporter - TextureProcessor - - - 45 - TextureImporter - TextureProcessor - - - 46 - TextureImporter - TextureProcessor - - - 47 - TextureImporter - TextureProcessor - - - 48 - TextureImporter - TextureProcessor - - - 49 - TextureImporter - TextureProcessor - - - 5 - TextureImporter - TextureProcessor - - - 50 - TextureImporter - TextureProcessor - - - 51 - TextureImporter - TextureProcessor - - - 52 - TextureImporter - TextureProcessor - - - 53 - TextureImporter - TextureProcessor - - - 54 - TextureImporter - TextureProcessor - - - 55 - TextureImporter - TextureProcessor - - - 56 - TextureImporter - TextureProcessor - - - 57 - TextureImporter - TextureProcessor - - - 58 - TextureImporter - TextureProcessor - - - 59 - TextureImporter - TextureProcessor - - - 6 - TextureImporter - TextureProcessor - - - 60 - TextureImporter - TextureProcessor - - - 61 - TextureImporter - TextureProcessor - - - 62 - TextureImporter - TextureProcessor - - - 63 - TextureImporter - TextureProcessor - - - 64 - TextureImporter - TextureProcessor - - - 65 - TextureImporter - TextureProcessor - - - 66 - TextureImporter - TextureProcessor - - - 67 - TextureImporter - TextureProcessor - - - 68 - TextureImporter - TextureProcessor - - - 69 - TextureImporter - TextureProcessor - - - 7 - TextureImporter - TextureProcessor - - - 70 - TextureImporter - TextureProcessor - - - 71 - TextureImporter - TextureProcessor - - - 72 - TextureImporter - TextureProcessor - - - 73 - TextureImporter - TextureProcessor - - - 74 - TextureImporter - TextureProcessor - - - 75 - TextureImporter - TextureProcessor - - - 76 - TextureImporter - TextureProcessor - - - 77 - TextureImporter - TextureProcessor - - - 78 - TextureImporter - TextureProcessor - - - 79 - TextureImporter - TextureProcessor - - - 8 - TextureImporter - TextureProcessor - - - 80 - TextureImporter - TextureProcessor - - - 81 - TextureImporter - TextureProcessor - - - 82 - TextureImporter - TextureProcessor - - - 83 - TextureImporter - TextureProcessor - - - 84 - TextureImporter - TextureProcessor - - - 85 - TextureImporter - TextureProcessor - - - 86 - TextureImporter - TextureProcessor - - - 87 - TextureImporter - TextureProcessor - - - 88 - TextureImporter - TextureProcessor - - - 89 - TextureImporter - TextureProcessor - - - 9 - TextureImporter - TextureProcessor - - - 90 - TextureImporter - TextureProcessor - - - 91 - TextureImporter - TextureProcessor - - - 92 - TextureImporter - TextureProcessor - - - 93 - TextureImporter - TextureProcessor - - - 94 - TextureImporter - TextureProcessor - - - 95 - TextureImporter - TextureProcessor - - - 96 - TextureImporter - TextureProcessor - - - 97 - TextureImporter - TextureProcessor - - - 98 - TextureImporter - TextureProcessor - - - 99 - TextureImporter - TextureProcessor - - - - - 1 - TextureImporter - TextureProcessor - - - 10 - TextureImporter - TextureProcessor - - - 100 - TextureImporter - TextureProcessor - - - 101 - TextureImporter - TextureProcessor - - - 102 - TextureImporter - TextureProcessor - - - 103 - TextureImporter - TextureProcessor - - - 104 - TextureImporter - TextureProcessor - - - 105 - TextureImporter - TextureProcessor - - - 106 - TextureImporter - TextureProcessor - - - 107 - TextureImporter - TextureProcessor - - - 108 - TextureImporter - TextureProcessor - - - 109 - TextureImporter - TextureProcessor - - - 11 - TextureImporter - TextureProcessor - - - 110 - TextureImporter - TextureProcessor - - - 111 - TextureImporter - TextureProcessor - - - 112 - TextureImporter - TextureProcessor - - - 113 - TextureImporter - TextureProcessor - - - 114 - TextureImporter - TextureProcessor - - - 115 - TextureImporter - TextureProcessor - - - 116 - TextureImporter - TextureProcessor - - - 117 - TextureImporter - TextureProcessor - - - 118 - TextureImporter - TextureProcessor - - - 119 - TextureImporter - TextureProcessor - - - 12 - TextureImporter - TextureProcessor - - - 120 - TextureImporter - TextureProcessor - - - 121 - TextureImporter - TextureProcessor - - - 122 - TextureImporter - TextureProcessor - - - 123 - TextureImporter - TextureProcessor - - - 124 - TextureImporter - TextureProcessor - - - 125 - TextureImporter - TextureProcessor - - - 126 - TextureImporter - TextureProcessor - - - 127 - TextureImporter - TextureProcessor - - - 128 - TextureImporter - TextureProcessor - - - 129 - TextureImporter - TextureProcessor - - - 13 - TextureImporter - TextureProcessor - - - 130 - TextureImporter - TextureProcessor - - - 131 - TextureImporter - TextureProcessor - - - 132 - TextureImporter - TextureProcessor - - - 133 - TextureImporter - TextureProcessor - - - 134 - TextureImporter - TextureProcessor - - - 135 - TextureImporter - TextureProcessor - - - 136 - TextureImporter - TextureProcessor - - - 137 - TextureImporter - TextureProcessor - - - 138 - TextureImporter - TextureProcessor - - - 139 - TextureImporter - TextureProcessor - - - 14 - TextureImporter - TextureProcessor - - - 140 - TextureImporter - TextureProcessor - - - 141 - TextureImporter - TextureProcessor - - - 142 - TextureImporter - TextureProcessor - - - 143 - TextureImporter - TextureProcessor - - - 144 - TextureImporter - TextureProcessor - - - 145 - TextureImporter - TextureProcessor - - - 146 - TextureImporter - TextureProcessor - - - 147 - TextureImporter - TextureProcessor - - - 148 - TextureImporter - TextureProcessor - - - 149 - TextureImporter - TextureProcessor - - - 15 - TextureImporter - TextureProcessor - - - 150 - TextureImporter - TextureProcessor - - - 151 - TextureImporter - TextureProcessor - - - 152 - TextureImporter - TextureProcessor - - - 153 - TextureImporter - TextureProcessor - - - 154 - TextureImporter - TextureProcessor - - - 155 - TextureImporter - TextureProcessor - - - 156 - TextureImporter - TextureProcessor - - - 157 - TextureImporter - TextureProcessor - - - 158 - TextureImporter - TextureProcessor - - - 159 - TextureImporter - TextureProcessor - - - 16 - TextureImporter - TextureProcessor - - - 160 - TextureImporter - TextureProcessor - - - 161 - TextureImporter - TextureProcessor - - - 162 - TextureImporter - TextureProcessor - - - 163 - TextureImporter - TextureProcessor - - - 164 - TextureImporter - TextureProcessor - - - 165 - TextureImporter - TextureProcessor - - - 166 - TextureImporter - TextureProcessor - - - 167 - TextureImporter - TextureProcessor - - - 168 - TextureImporter - TextureProcessor - - - 169 - TextureImporter - TextureProcessor - - - 17 - TextureImporter - TextureProcessor - - - 170 - TextureImporter - TextureProcessor - - - 171 - TextureImporter - TextureProcessor - - - 172_spiky-eared - TextureImporter - TextureProcessor - - - 172 - TextureImporter - TextureProcessor - - - 173 - TextureImporter - TextureProcessor - - - 174 - TextureImporter - TextureProcessor - - - 175 - TextureImporter - TextureProcessor - - - 176 - TextureImporter - TextureProcessor - - - 177 - TextureImporter - TextureProcessor - - - 178 - TextureImporter - TextureProcessor - - - 179 - TextureImporter - TextureProcessor - - - 18 - TextureImporter - TextureProcessor - - - 180 - TextureImporter - TextureProcessor - - - 181 - TextureImporter - TextureProcessor - - - 182 - TextureImporter - TextureProcessor - - - 183 - TextureImporter - TextureProcessor - - - 184 - TextureImporter - TextureProcessor - - - 185 - TextureImporter - TextureProcessor - - - 186 - TextureImporter - TextureProcessor - - - 187 - TextureImporter - TextureProcessor - - - 188 - TextureImporter - TextureProcessor - - - 189 - TextureImporter - TextureProcessor - - - 19 - TextureImporter - TextureProcessor - - - 190 - TextureImporter - TextureProcessor - - - 191 - TextureImporter - TextureProcessor - - - 192 - TextureImporter - TextureProcessor - - - 193 - TextureImporter - TextureProcessor - - - 194 - TextureImporter - TextureProcessor - - - 195 - TextureImporter - TextureProcessor - - - 196 - TextureImporter - TextureProcessor - - - 197 - TextureImporter - TextureProcessor - - - 198 - TextureImporter - TextureProcessor - - - 199 - TextureImporter - TextureProcessor - - - 2 - TextureImporter - TextureProcessor - - - 20 - TextureImporter - TextureProcessor - - - 200 - TextureImporter - TextureProcessor - - - 201-a - TextureImporter - TextureProcessor - - - 201-b - TextureImporter - TextureProcessor - - - 201-c - TextureImporter - TextureProcessor - - - 201-d - TextureImporter - TextureProcessor - - - 201-e - TextureImporter - TextureProcessor - - - 201-exclamation - TextureImporter - TextureProcessor - - - 201-f - TextureImporter - TextureProcessor - - - 201-g - TextureImporter - TextureProcessor - - - 201-h - TextureImporter - TextureProcessor - - - 201-i - TextureImporter - TextureProcessor - - - 201-j - TextureImporter - TextureProcessor - - - 201-k - TextureImporter - TextureProcessor - - - 201-l - TextureImporter - TextureProcessor - - - 201-m - TextureImporter - TextureProcessor - - - 201-n - TextureImporter - TextureProcessor - - - 201-o - TextureImporter - TextureProcessor - - - 201-p - TextureImporter - TextureProcessor - - - 201-q - TextureImporter - TextureProcessor - - - 201-question - TextureImporter - TextureProcessor - - - 201-r - TextureImporter - TextureProcessor - - - 201-s - TextureImporter - TextureProcessor - - - 201-t - TextureImporter - TextureProcessor - - - 201-u - TextureImporter - TextureProcessor - - - 201-v - TextureImporter - TextureProcessor - - - 201-w - TextureImporter - TextureProcessor - - - 201-x - TextureImporter - TextureProcessor - - - 201-y - TextureImporter - TextureProcessor - - - 201-z - TextureImporter - TextureProcessor - - - 201 - TextureImporter - TextureProcessor - - - 202 - TextureImporter - TextureProcessor - - - 203 - TextureImporter - TextureProcessor - - - 204 - TextureImporter - TextureProcessor - - - 205 - TextureImporter - TextureProcessor - - - 206 - TextureImporter - TextureProcessor - - - 207 - TextureImporter - TextureProcessor - - - 208 - TextureImporter - TextureProcessor - - - 209 - TextureImporter - TextureProcessor - - - 21 - TextureImporter - TextureProcessor - - - 210 - TextureImporter - TextureProcessor - - - 211 - TextureImporter - TextureProcessor - - - 212 - TextureImporter - TextureProcessor - - - 213 - TextureImporter - TextureProcessor - - - 214 - TextureImporter - TextureProcessor - - - 215 - TextureImporter - TextureProcessor - - - 216 - TextureImporter - TextureProcessor - - - 217 - TextureImporter - TextureProcessor - - - 218 - TextureImporter - TextureProcessor - - - 219 - TextureImporter - TextureProcessor - - - 22 - TextureImporter - TextureProcessor - - - 220 - TextureImporter - TextureProcessor - - - 221 - TextureImporter - TextureProcessor - - - 222 - TextureImporter - TextureProcessor - - - 223 - TextureImporter - TextureProcessor - - - 224 - TextureImporter - TextureProcessor - - - 225 - TextureImporter - TextureProcessor - - - 226 - TextureImporter - TextureProcessor - - - 227 - TextureImporter - TextureProcessor - - - 228 - TextureImporter - TextureProcessor - - - 229 - TextureImporter - TextureProcessor - - - 23 - TextureImporter - TextureProcessor - - - 230 - TextureImporter - TextureProcessor - - - 231 - TextureImporter - TextureProcessor - - - 232 - TextureImporter - TextureProcessor - - - 233 - TextureImporter - TextureProcessor - - - 234 - TextureImporter - TextureProcessor - - - 235 - TextureImporter - TextureProcessor - - - 236 - TextureImporter - TextureProcessor - - - 237 - TextureImporter - TextureProcessor - - - 238 - TextureImporter - TextureProcessor - - - 239 - TextureImporter - TextureProcessor - - - 24 - TextureImporter - TextureProcessor - - - 240 - TextureImporter - TextureProcessor - - - 241 - TextureImporter - TextureProcessor - - - 242 - TextureImporter - TextureProcessor - - - 243 - TextureImporter - TextureProcessor - - - 244 - TextureImporter - TextureProcessor - - - 245 - TextureImporter - TextureProcessor - - - 246 - TextureImporter - TextureProcessor - - - 247 - TextureImporter - TextureProcessor - - - 248 - TextureImporter - TextureProcessor - - - 249 - TextureImporter - TextureProcessor - - - 25 - TextureImporter - TextureProcessor - - - 250 - TextureImporter - TextureProcessor - - - 251 - TextureImporter - TextureProcessor - - - 26 - TextureImporter - TextureProcessor - - - 27 - TextureImporter - TextureProcessor - - - 28 - TextureImporter - TextureProcessor - - - 29 - TextureImporter - TextureProcessor - - - 3 - TextureImporter - TextureProcessor - - - 30 - TextureImporter - TextureProcessor - - - 31 - TextureImporter - TextureProcessor - - - 32 - TextureImporter - TextureProcessor - - - 33 - TextureImporter - TextureProcessor - - - 34 - TextureImporter - TextureProcessor - - - 35 - TextureImporter - TextureProcessor - - - 36 - TextureImporter - TextureProcessor - - - 37 - TextureImporter - TextureProcessor - - - 38 - TextureImporter - TextureProcessor - - - 39 - TextureImporter - TextureProcessor - - - 4 - TextureImporter - TextureProcessor - - - 40 - TextureImporter - TextureProcessor - - - 41 - TextureImporter - TextureProcessor - - - 42 - TextureImporter - TextureProcessor - - - 43 - TextureImporter - TextureProcessor - - - 44 - TextureImporter - TextureProcessor - - - 45 - TextureImporter - TextureProcessor - - - 46 - TextureImporter - TextureProcessor - - - 47 - TextureImporter - TextureProcessor - - - 48 - TextureImporter - TextureProcessor - - - 49 - TextureImporter - TextureProcessor - - - 5 - TextureImporter - TextureProcessor - - - 50 - TextureImporter - TextureProcessor - - - 51 - TextureImporter - TextureProcessor - - - 52 - TextureImporter - TextureProcessor - - - 53 - TextureImporter - TextureProcessor - - - 54 - TextureImporter - TextureProcessor - - - 55 - TextureImporter - TextureProcessor - - - 56 - TextureImporter - TextureProcessor - - - 57 - TextureImporter - TextureProcessor - - - 58 - TextureImporter - TextureProcessor - - - 59 - TextureImporter - TextureProcessor - - - 6 - TextureImporter - TextureProcessor - - - 60 - TextureImporter - TextureProcessor - - - 61 - TextureImporter - TextureProcessor - - - 62 - TextureImporter - TextureProcessor - - - 63 - TextureImporter - TextureProcessor - - - 64 - TextureImporter - TextureProcessor - - - 65 - TextureImporter - TextureProcessor - - - 66 - TextureImporter - TextureProcessor - - - 67 - TextureImporter - TextureProcessor - - - 68 - TextureImporter - TextureProcessor - - - 69 - TextureImporter - TextureProcessor - - - 7 - TextureImporter - TextureProcessor - - - 70 - TextureImporter - TextureProcessor - - - 71 - TextureImporter - TextureProcessor - - - 72 - TextureImporter - TextureProcessor - - - 73 - TextureImporter - TextureProcessor - - - 74 - TextureImporter - TextureProcessor - - - 75 - TextureImporter - TextureProcessor - - - 76 - TextureImporter - TextureProcessor - - - 77 - TextureImporter - TextureProcessor - - - 78 - TextureImporter - TextureProcessor - - - 79 - TextureImporter - TextureProcessor - - - 8 - TextureImporter - TextureProcessor - - - 80 - TextureImporter - TextureProcessor - - - 81 - TextureImporter - TextureProcessor - - - 82 - TextureImporter - TextureProcessor - - - 83 - TextureImporter - TextureProcessor - - - 84 - TextureImporter - TextureProcessor - - - 85 - TextureImporter - TextureProcessor - - - 86 - TextureImporter - TextureProcessor - - - 87 - TextureImporter - TextureProcessor - - - 88 - TextureImporter - TextureProcessor - - - 89 - TextureImporter - TextureProcessor - - - 9 - TextureImporter - TextureProcessor - - - 90 - TextureImporter - TextureProcessor - - - 91 - TextureImporter - TextureProcessor - - - 92 - TextureImporter - TextureProcessor - - - 93 - TextureImporter - TextureProcessor - - - 94 - TextureImporter - TextureProcessor - - - 95 - TextureImporter - TextureProcessor - - - 96 - TextureImporter - TextureProcessor - - - 97 - TextureImporter - TextureProcessor - - - 98 - TextureImporter - TextureProcessor - - - 99 - TextureImporter - TextureProcessor - - - - - Nate - TextureImporter - TextureProcessor - - - Rosa - TextureImporter - TextureProcessor - - - - - VSIntro - TextureImporter - TextureProcessor - - - - - Alph - TextureImporter - TextureProcessor - - - - - RouteMusic2 - Mp3Importer - SongProcessor - Low - - - - - running - Mp3Importer - SoundEffectProcessor - Low - - - TossPokeball - Mp3Importer - SoundEffectProcessor - Low - - - - - PokeballOpen - Mp3Importer - SoundEffectProcessor - Low - - - - - 23 - TextureImporter - TextureProcessor - - - 24 - TextureImporter - TextureProcessor - - - 25 - TextureImporter - TextureProcessor - - - - - Egg_back - TextureImporter - TextureProcessor - - - Egg_front - TextureImporter - TextureProcessor - - - - - Lyra - TextureImporter - TextureProcessor - - - - - EggBreak - TextureImporter - TextureProcessor - - - - - Whitney - TextureImporter - TextureProcessor - - - - - Goldenrod - Mp3Importer - SongProcessor - Low - - - - - 26 - TextureImporter - TextureProcessor - - - - - 27 - TextureImporter - TextureProcessor - - - - - Kanto0 - TextureImporter - TextureProcessor - - - - - alph - Mp3Importer - SongProcessor - Low - - - - - 29 - TextureImporter - TextureProcessor - - - - - Park - TextureImporter - TextureProcessor - - - - - forcepalmhand - TextureImporter - TextureProcessor - - - forcepalmhandfaded - TextureImporter - TextureProcessor - - - forcepalmhandfading - TextureImporter - TextureProcessor - - - forcepalmimpact - TextureImporter - TextureProcessor - - - forcepalmparticle - TextureImporter - TextureProcessor - - - - - KolbenBrand - TextureImporter - TextureProcessor - - - - - KolbenText - TextureImporter - TextureProcessor - - - - - Heal - TextureImporter - TextureProcessor - - - - - ecruteak - TextureImporter - TextureProcessor - - - - - 30 - TextureImporter - TextureProcessor - - - - - 243_stone - TextureImporter - TextureProcessor - - - 244_stone - TextureImporter - TextureProcessor - - - 245_stone - TextureImporter - TextureProcessor - - - - - Eusine - TextureImporter - TextureProcessor - - - Morty - TextureImporter - TextureProcessor - - - - - burnedtower - Mp3Importer - SongProcessor - Low - - - - - ecruteak - Mp3Importer - SongProcessor - Low - - - - - 31 - TextureImporter - TextureProcessor - - - - - tintower - Mp3Importer - SongProcessor - Low - - - - - kimono - Mp3Importer - SongProcessor - Low - - - - - RouteMusic3 - Mp3Importer - SongProcessor - Low - - - - - 32 - TextureImporter - TextureProcessor - - - - - Olivine - TextureImporter - TextureProcessor - - - - - GameJolt - TextureImporter - TextureProcessor - - - - - Mahogany - TextureImporter - TextureProcessor - - - - - Jasmine - TextureImporter - TextureProcessor - - - - - House4 - TextureImporter - TextureProcessor - - - - - lighthouse - Mp3Importer - SongProcessor - Low - - - - - 33 - TextureImporter - TextureProcessor - - - - - cianwood - TextureImporter - TextureProcessor - - - - - nationalpark - Mp3Importer - SongProcessor - Low - - - - - 34 - TextureImporter - TextureProcessor - - - 35 - TextureImporter - TextureProcessor - - - - - Chuck - TextureImporter - TextureProcessor - - - - - PlantColoring - TextureImporter - TextureProcessor - - - - - Grass - TextureImporter - TextureProcessor - - - - - Flowers - TextureImporter - TextureProcessor - - - - - bubble - TextureImporter - TextureProcessor - - - - - RouteMusic4 - Mp3Importer - SongProcessor - Low - - - - - Water - TextureImporter - TextureProcessor - - - - - Lakeofrage - TextureImporter - TextureProcessor - - - - - rocketbase - TextureImporter - TextureProcessor - - - - - Ariana - TextureImporter - TextureProcessor - - - - - rHideout - Mp3Importer - SongProcessor - Low - - - - - trainer - TextureImporter - TextureProcessor - - - - - alph - TextureImporter - TextureProcessor - - - champion - TextureImporter - TextureProcessor - - - eevee - TextureImporter - TextureProcessor - - - genetics - TextureImporter - TextureProcessor - - - legendary - TextureImporter - TextureProcessor - - - overkill - TextureImporter - TextureProcessor - - - pokedex - TextureImporter - TextureProcessor - - - snow - TextureImporter - TextureProcessor - - - stars - TextureImporter - TextureProcessor - - - - - cyber - TextureImporter - TextureProcessor - - - glowing - TextureImporter - TextureProcessor - - - johto - TextureImporter - TextureProcessor - - - kanto - TextureImporter - TextureProcessor - - - unodostres - TextureImporter - TextureProcessor - - - material - TextureImporter - TextureProcessor - - - - - darkfire - TextureImporter - TextureProcessor - - - dracohouston - TextureImporter - TextureProcessor - - - nilllzz - TextureImporter - TextureProcessor - - - princevade - TextureImporter - TextureProcessor - - - - - johto_rocket_encounter - Mp3Importer - SongProcessor - Low - - - - - fog - TextureImporter - TextureProcessor - - - glacier - TextureImporter - TextureProcessor - - - hive - TextureImporter - TextureProcessor - - - mineral - TextureImporter - TextureProcessor - - - plain - TextureImporter - TextureProcessor - - - rising - TextureImporter - TextureProcessor - - - storm - TextureImporter - TextureProcessor - - - zephyr - TextureImporter - TextureProcessor - - - - - border - TextureImporter - TextureProcessor - - - - - 36 - TextureImporter - TextureProcessor - - - 37 - TextureImporter - TextureProcessor - - - Lance - TextureImporter - TextureProcessor - - - Petrel - TextureImporter - TextureProcessor - - - Pryce - TextureImporter - TextureProcessor - - - - - 38 - TextureImporter - TextureProcessor - - - 39 - TextureImporter - TextureProcessor - - - - - 40 - TextureImporter - TextureProcessor - - - 41 - TextureImporter - TextureProcessor - - - 42 - TextureImporter - TextureProcessor - - - 43 - TextureImporter - TextureProcessor - - - 44 - TextureImporter - TextureProcessor - - - 45 - TextureImporter - TextureProcessor - - - 46 - TextureImporter - TextureProcessor - - - 47 - TextureImporter - TextureProcessor - - - 48 - TextureImporter - TextureProcessor - - - 50 - TextureImporter - TextureProcessor - - - 51 - TextureImporter - TextureProcessor - - - 52 - TextureImporter - TextureProcessor - - - 53 - TextureImporter - TextureProcessor - - - 54 - TextureImporter - TextureProcessor - - - 55 - TextureImporter - TextureProcessor - - - 56 - TextureImporter - TextureProcessor - - - 57 - TextureImporter - TextureProcessor - - - 58 - TextureImporter - TextureProcessor - - - 59 - TextureImporter - TextureProcessor - - - 60 - TextureImporter - TextureProcessor - - - 64 - TextureImporter - TextureProcessor - - - 65 - TextureImporter - TextureProcessor - - - 66 - TextureImporter - TextureProcessor - - - 67 - TextureImporter - TextureProcessor - - - 68 - TextureImporter - TextureProcessor - - - 69 - TextureImporter - TextureProcessor - - - 70 - TextureImporter - TextureProcessor - - - 71 - TextureImporter - TextureProcessor - - - - - cros - TextureImporter - TextureProcessor - - - - - 72 - TextureImporter - TextureProcessor - - - 73 - TextureImporter - TextureProcessor - - - 74 - TextureImporter - TextureProcessor - - - 75 - TextureImporter - TextureProcessor - - - 76 - TextureImporter - TextureProcessor - - - 77 - TextureImporter - TextureProcessor - - - 78 - TextureImporter - TextureProcessor - - - 79 - TextureImporter - TextureProcessor - - - 80 - TextureImporter - TextureProcessor - - - 81 - TextureImporter - TextureProcessor - - - - - 83 - TextureImporter - TextureProcessor - - - - - 84 - TextureImporter - TextureProcessor - - - - - 82 - TextureImporter - TextureProcessor - - - Archer - TextureImporter - TextureProcessor - - - - - itemfinder - Mp3Importer - SoundEffectProcessor - Low - - - - - Mary - TextureImporter - TextureProcessor - - - - - blackthorn - TextureImporter - TextureProcessor - - - - - sand - TextureImporter - TextureProcessor - - - - - eggsplosion - TextureImporter - TextureProcessor - - - - - Gate - TextureImporter - TextureProcessor - - - - - Shrine - TextureImporter - TextureProcessor - - - - - Clair - TextureImporter - TextureProcessor - - - - - Flame - TextureImporter - TextureProcessor - - - - - Rods - TextureImporter - TextureProcessor - - - - - 280 - TextureImporter - TextureProcessor - - - 281 - TextureImporter - TextureProcessor - - - 282 - TextureImporter - TextureProcessor - - - 298 - TextureImporter - TextureProcessor - - - 360 - TextureImporter - TextureProcessor - - - 382 - TextureImporter - TextureProcessor - - - 383 - TextureImporter - TextureProcessor - - - 384 - TextureImporter - TextureProcessor - - - 424 - TextureImporter - TextureProcessor - - - 429 - TextureImporter - TextureProcessor - - - 430 - TextureImporter - TextureProcessor - - - 438 - TextureImporter - TextureProcessor - - - 439 - TextureImporter - TextureProcessor - - - 440 - TextureImporter - TextureProcessor - - - 446 - TextureImporter - TextureProcessor - - - 447 - TextureImporter - TextureProcessor - - - 448 - TextureImporter - TextureProcessor - - - 458 - TextureImporter - TextureProcessor - - - 461 - TextureImporter - TextureProcessor - - - 462 - TextureImporter - TextureProcessor - - - 463 - TextureImporter - TextureProcessor - - - 464 - TextureImporter - TextureProcessor - - - 465 - TextureImporter - TextureProcessor - - - 466 - TextureImporter - TextureProcessor - - - 467 - TextureImporter - TextureProcessor - - - 468 - TextureImporter - TextureProcessor - - - 469 - TextureImporter - TextureProcessor - - - 470 - TextureImporter - TextureProcessor - - - 471 - TextureImporter - TextureProcessor - - - 472 - TextureImporter - TextureProcessor - - - 473 - TextureImporter - TextureProcessor - - - 474 - TextureImporter - TextureProcessor - - - 475 - TextureImporter - TextureProcessor - - - 476 - TextureImporter - TextureProcessor - - - 477 - TextureImporter - TextureProcessor - - - 478 - TextureImporter - TextureProcessor - - - - - 280 - TextureImporter - TextureProcessor - - - 281 - TextureImporter - TextureProcessor - - - 282 - TextureImporter - TextureProcessor - - - 298 - TextureImporter - TextureProcessor - - - 360 - TextureImporter - TextureProcessor - - - 382 - TextureImporter - TextureProcessor - - - 383 - TextureImporter - TextureProcessor - - - 384 - TextureImporter - TextureProcessor - - - 424 - TextureImporter - TextureProcessor - - - 429 - TextureImporter - TextureProcessor - - - 430 - TextureImporter - TextureProcessor - - - 438 - TextureImporter - TextureProcessor - - - 439 - TextureImporter - TextureProcessor - - - 440 - TextureImporter - TextureProcessor - - - 446 - TextureImporter - TextureProcessor - - - 447 - TextureImporter - TextureProcessor - - - 448 - TextureImporter - TextureProcessor - - - 458 - TextureImporter - TextureProcessor - - - 461 - TextureImporter - TextureProcessor - - - 462 - TextureImporter - TextureProcessor - - - 463 - TextureImporter - TextureProcessor - - - 464 - TextureImporter - TextureProcessor - - - 465 - TextureImporter - TextureProcessor - - - 466 - TextureImporter - TextureProcessor - - - 467 - TextureImporter - TextureProcessor - - - 468 - TextureImporter - TextureProcessor - - - 469 - TextureImporter - TextureProcessor - - - 470 - TextureImporter - TextureProcessor - - - 471 - TextureImporter - TextureProcessor - - - 472 - TextureImporter - TextureProcessor - - - 473 - TextureImporter - TextureProcessor - - - 474 - TextureImporter - TextureProcessor - - - 475 - TextureImporter - TextureProcessor - - - 476 - TextureImporter - TextureProcessor - - - 477 - TextureImporter - TextureProcessor - - - 478 - TextureImporter - TextureProcessor - - - - - 461 - Mp3Importer - SoundEffectProcessor - Low - - - 462 - Mp3Importer - SoundEffectProcessor - Low - - - 463 - Mp3Importer - SoundEffectProcessor - Low - - - 464 - Mp3Importer - SoundEffectProcessor - Low - - - 465 - Mp3Importer - SoundEffectProcessor - Low - - - 466 - Mp3Importer - SoundEffectProcessor - Low - - - 467 - Mp3Importer - SoundEffectProcessor - Low - - - 468 - Mp3Importer - SoundEffectProcessor - Low - - - 469 - Mp3Importer - SoundEffectProcessor - Low - - - 470 - Mp3Importer - SoundEffectProcessor - Low - - - 471 - Mp3Importer - SoundEffectProcessor - Low - - - 472 - Mp3Importer - SoundEffectProcessor - Low - - - 473 - Mp3Importer - SoundEffectProcessor - Low - - - 474 - Mp3Importer - SoundEffectProcessor - Low - - - 475 - Mp3Importer - SoundEffectProcessor - Low - - - 476 - Mp3Importer - SoundEffectProcessor - Low - - - 477 - Mp3Importer - SoundEffectProcessor - Low - - - 478 - Mp3Importer - SoundEffectProcessor - Low - - - - - 360 - Mp3Importer - SoundEffectProcessor - Low - - - 382 - Mp3Importer - SoundEffectProcessor - Low - - - 383 - Mp3Importer - SoundEffectProcessor - Low - - - 384 - Mp3Importer - SoundEffectProcessor - Low - - - 424 - Mp3Importer - SoundEffectProcessor - Low - - - 427 - Mp3Importer - SoundEffectProcessor - Low - - - 428 - Mp3Importer - SoundEffectProcessor - Low - - - 429 - Mp3Importer - SoundEffectProcessor - Low - - - 430 - Mp3Importer - SoundEffectProcessor - Low - - - 438 - Mp3Importer - SoundEffectProcessor - Low - - - 439 - Mp3Importer - SoundEffectProcessor - Low - - - 440 - Mp3Importer - SoundEffectProcessor - Low - - - 442 - Mp3Importer - SoundEffectProcessor - Low - - - 446 - Mp3Importer - SoundEffectProcessor - Low - - - 458 - Mp3Importer - SoundEffectProcessor - Low - - - - - 280 - Mp3Importer - SoundEffectProcessor - Low - - - 281 - Mp3Importer - SoundEffectProcessor - Low - - - 282 - Mp3Importer - SoundEffectProcessor - Low - - - 298 - Mp3Importer - SoundEffectProcessor - Low - - - - - dragonsden - Mp3Importer - SongProcessor - Low - - - RouteMusic6 - Mp3Importer - SongProcessor - Low - - - - - kanto_map - TextureImporter - TextureProcessor - - - - - BlurEffect - EffectImporter - EffectProcessor - - - - - kvictoryroad - Mp3Importer - SongProcessor - Low - - - - - missingno - TextureImporter - TextureProcessor - - - - - Shadow - TextureImporter - TextureProcessor - - - - - train - TextureImporter - TextureProcessor - - - - - mart - Mp3Importer - SongProcessor - Low - - - - - champion_defeat - Mp3Importer - SongProcessor - Low - - - elite_defeat - Mp3Importer - SongProcessor - Low - - - eusine_encounter - Mp3Importer - SongProcessor - Low - - - HallofFame - Mp3Importer - SongProcessor - Low - - - johto_champion - Mp3Importer - SongProcessor - Low - - - Johto_champion_intro - Mp3Importer - SongProcessor - Low - - - johto_elite - Mp3Importer - SongProcessor - Low - - - johto_elite_intro - Mp3Importer - SongProcessor - Low - - - mary_encounter - Mp3Importer - SongProcessor - Low - - - oak_encounter - Mp3Importer - SongProcessor - Low - - - ride - Mp3Importer - SongProcessor - Low - - - surf - Mp3Importer - SongProcessor - Low - - - - - GTS - TextureImporter - TextureProcessor - - - - - elmslab - Mp3Importer - SongProcessor - Low - - - johto_rival_encounter - Mp3Importer - SongProcessor - Low - - - - - Abra - TextureImporter - TextureProcessor - - - Aerodactyl - TextureImporter - TextureProcessor - - - Aipom - TextureImporter - TextureProcessor - - - Alakazam - TextureImporter - TextureProcessor - - - Ambipom - TextureImporter - TextureProcessor - - - Ampharos - TextureImporter - TextureProcessor - - - Arbok - TextureImporter - TextureProcessor - - - Arcanine - TextureImporter - TextureProcessor - - - Ariados - TextureImporter - TextureProcessor - - - Articuno - TextureImporter - TextureProcessor - - - Azumarill - TextureImporter - TextureProcessor - - - Azurill - TextureImporter - TextureProcessor - - - Bayleef - TextureImporter - TextureProcessor - - - Beedrill - TextureImporter - TextureProcessor - - - Bellossom - TextureImporter - TextureProcessor - - - Bellsprout - TextureImporter - TextureProcessor - - - Blastoise - TextureImporter - TextureProcessor - - - Blissey - TextureImporter - TextureProcessor - - - Bonsly - TextureImporter - TextureProcessor - - - Bulbasaur - TextureImporter - TextureProcessor - - - Butterfree - TextureImporter - TextureProcessor - - - Caterpie - TextureImporter - TextureProcessor - - - Celebi - TextureImporter - TextureProcessor - - - Chansey - TextureImporter - TextureProcessor - - - Charizard - TextureImporter - TextureProcessor - - - Charmander - TextureImporter - TextureProcessor - - - Charmeleon - TextureImporter - TextureProcessor - - - Chikorita - TextureImporter - TextureProcessor - - - Chinchou - TextureImporter - TextureProcessor - - - Clefable - TextureImporter - TextureProcessor - - - Clefairy - TextureImporter - TextureProcessor - - - Cleffa - TextureImporter - TextureProcessor - - - Cloyster - TextureImporter - TextureProcessor - - - Corsola - TextureImporter - TextureProcessor - - - Crobat - TextureImporter - TextureProcessor - - - Croconaw - TextureImporter - TextureProcessor - - - Cubone - TextureImporter - TextureProcessor - - - Cyndaquil - TextureImporter - TextureProcessor - - - Delibird - TextureImporter - TextureProcessor - - - Dewgong - TextureImporter - TextureProcessor - - - Diglett - TextureImporter - TextureProcessor - - - Ditto - TextureImporter - TextureProcessor - - - Dodrio - TextureImporter - TextureProcessor - - - Doduo - TextureImporter - TextureProcessor - - - Donphan - TextureImporter - TextureProcessor - - - Dragonair - TextureImporter - TextureProcessor - - - Dragonite - TextureImporter - TextureProcessor - - - Dratini - TextureImporter - TextureProcessor - - - Drowzee - TextureImporter - TextureProcessor - - - Dugtrio - TextureImporter - TextureProcessor - - - Dunsparce - TextureImporter - TextureProcessor - - - Eevee - TextureImporter - TextureProcessor - - - Ekans - TextureImporter - TextureProcessor - - - Electabuzz - TextureImporter - TextureProcessor - - - Electivire - TextureImporter - TextureProcessor - - - Electrode - TextureImporter - TextureProcessor - - - Elekid - TextureImporter - TextureProcessor - - - Entei - TextureImporter - TextureProcessor - - - Espeon - TextureImporter - TextureProcessor - - - Exeggcute - TextureImporter - TextureProcessor - - - Exeggutor - TextureImporter - TextureProcessor - - - Farfetch%27d - TextureImporter - TextureProcessor - - - Fearow - TextureImporter - TextureProcessor - - - Feraligatr - TextureImporter - TextureProcessor - - - Flaaffy - TextureImporter - TextureProcessor - - - Flareon - TextureImporter - TextureProcessor - - - Forretress - TextureImporter - TextureProcessor - - - Furret - TextureImporter - TextureProcessor - - - Gallade - TextureImporter - TextureProcessor - - - Gardevoir - TextureImporter - TextureProcessor - - - Gastly - TextureImporter - TextureProcessor - - - Gengar - TextureImporter - TextureProcessor - - - Geodude - TextureImporter - TextureProcessor - - - Girafarig - TextureImporter - TextureProcessor - - - Glaceon - TextureImporter - TextureProcessor - - - Gligar - TextureImporter - TextureProcessor - - - Gliscor - TextureImporter - TextureProcessor - - - Gloom - TextureImporter - TextureProcessor - - - Golbat - TextureImporter - TextureProcessor - - - Goldeen - TextureImporter - TextureProcessor - - - Golduck - TextureImporter - TextureProcessor - - - Golem - TextureImporter - TextureProcessor - - - Granbull - TextureImporter - TextureProcessor - - - Graveler - TextureImporter - TextureProcessor - - - Grimer - TextureImporter - TextureProcessor - - - Groudon - TextureImporter - TextureProcessor - - - Growlithe - TextureImporter - TextureProcessor - - - Gyarados - TextureImporter - TextureProcessor - - - Happiny - TextureImporter - TextureProcessor - - - Haunter - TextureImporter - TextureProcessor - - - Heracross - TextureImporter - TextureProcessor - - - Hitmonchan - TextureImporter - TextureProcessor - - - Hitmonlee - TextureImporter - TextureProcessor - - - Hitmontop - TextureImporter - TextureProcessor - - - Ho-Oh - TextureImporter - TextureProcessor - - - Honchkrow - TextureImporter - TextureProcessor - - - Hoothoot - TextureImporter - TextureProcessor - - - Hoppip - TextureImporter - TextureProcessor - - - Horsea - TextureImporter - TextureProcessor - - - Houndoom - TextureImporter - TextureProcessor - - - Houndour - TextureImporter - TextureProcessor - - - Hypno - TextureImporter - TextureProcessor - - - Igglybuff - TextureImporter - TextureProcessor - - - Ivysaur - TextureImporter - TextureProcessor - - - Jigglypuff - TextureImporter - TextureProcessor - - - Jolteon - TextureImporter - TextureProcessor - - - Jumpluff - TextureImporter - TextureProcessor - - - Jynx - TextureImporter - TextureProcessor - - - Kabuto - TextureImporter - TextureProcessor - - - Kabutops - TextureImporter - TextureProcessor - - - Kadabra - TextureImporter - TextureProcessor - - - Kakuna - TextureImporter - TextureProcessor - - - Kangaskhan - TextureImporter - TextureProcessor - - - Kingdra - TextureImporter - TextureProcessor - - - Kingler - TextureImporter - TextureProcessor - - - Kirlia - TextureImporter - TextureProcessor - - - Koffing - TextureImporter - TextureProcessor - - - Krabby - TextureImporter - TextureProcessor - - - Kyogre - TextureImporter - TextureProcessor - - - Lanturn - TextureImporter - TextureProcessor - - - Lapras - TextureImporter - TextureProcessor - - - Larvitar - TextureImporter - TextureProcessor - - - Leafeon - TextureImporter - TextureProcessor - - - Ledian - TextureImporter - TextureProcessor - - - Ledyba - TextureImporter - TextureProcessor - - - Lickilicky - TextureImporter - TextureProcessor - - - Lickitung - TextureImporter - TextureProcessor - - - Lucario - TextureImporter - TextureProcessor - - - Lugia - TextureImporter - TextureProcessor - - - Machamp - TextureImporter - TextureProcessor - - - Machoke - TextureImporter - TextureProcessor - - - Machop - TextureImporter - TextureProcessor - - - Magby - TextureImporter - TextureProcessor - - - Magcargo - TextureImporter - TextureProcessor - - - Magikarp - TextureImporter - TextureProcessor - - - Magmar - TextureImporter - TextureProcessor - - - Magmortar - TextureImporter - TextureProcessor - - - Magnemite - TextureImporter - TextureProcessor - - - Magneton - TextureImporter - TextureProcessor - - - Magnezone - TextureImporter - TextureProcessor - - - Mamoswine - TextureImporter - TextureProcessor - - - Mankey - TextureImporter - TextureProcessor - - - Mantine - TextureImporter - TextureProcessor - - - Mantyke - TextureImporter - TextureProcessor - - - Mareep - TextureImporter - TextureProcessor - - - Marill - TextureImporter - TextureProcessor - - - Marowak - TextureImporter - TextureProcessor - - - Meganium - TextureImporter - TextureProcessor - - - Meowth - TextureImporter - TextureProcessor - - - Metapod - TextureImporter - TextureProcessor - - - Mew - TextureImporter - TextureProcessor - - - Mewtwo - TextureImporter - TextureProcessor - - - Miltank - TextureImporter - TextureProcessor - - - Mime Jr. - TextureImporter - TextureProcessor - - - Misdreavus - TextureImporter - TextureProcessor - - - Mismagius - TextureImporter - TextureProcessor - - - Moltres - TextureImporter - TextureProcessor - - - Mr. Mime - TextureImporter - TextureProcessor - - - Muk - TextureImporter - TextureProcessor - - - Munchlax - TextureImporter - TextureProcessor - - - Murkrow - TextureImporter - TextureProcessor - - - Natu - TextureImporter - TextureProcessor - - - Nidoking - TextureImporter - TextureProcessor - - - Nidoqueen - TextureImporter - TextureProcessor - - - Nidoran_f - TextureImporter - TextureProcessor - - - Nidoran_m - TextureImporter - TextureProcessor - - - Nidorina - TextureImporter - TextureProcessor - - - Nidorino - TextureImporter - TextureProcessor - - - Ninetales - TextureImporter - TextureProcessor - - - Noctowl - TextureImporter - TextureProcessor - - - Octillery - TextureImporter - TextureProcessor - - - Oddish - TextureImporter - TextureProcessor - - - Omanyte - TextureImporter - TextureProcessor - - - Omastar - TextureImporter - TextureProcessor - - - Onix - TextureImporter - TextureProcessor - - - Paras - TextureImporter - TextureProcessor - - - Parasect - TextureImporter - TextureProcessor - - - Persian - TextureImporter - TextureProcessor - - - Phanpy - TextureImporter - TextureProcessor - - - Pichu - TextureImporter - TextureProcessor - - - Pidgeot - TextureImporter - TextureProcessor - - - Pidgeotto - TextureImporter - TextureProcessor - - - Pidgey - TextureImporter - TextureProcessor - - - Pikachu - TextureImporter - TextureProcessor - - - Piloswine - TextureImporter - TextureProcessor - - - Pineco - TextureImporter - TextureProcessor - - - Pinsir - TextureImporter - TextureProcessor - - - Politoed - TextureImporter - TextureProcessor - - - Poliwag - TextureImporter - TextureProcessor - - - Poliwhirl - TextureImporter - TextureProcessor - - - Poliwrath - TextureImporter - TextureProcessor - - - Ponyta - TextureImporter - TextureProcessor - - - Porygon-Z - TextureImporter - TextureProcessor - - - Porygon - TextureImporter - TextureProcessor - - - Porygon2 - TextureImporter - TextureProcessor - - - Primeape - TextureImporter - TextureProcessor - - - Psyduck - TextureImporter - TextureProcessor - - - Pupitar - TextureImporter - TextureProcessor - - - Quagsire - TextureImporter - TextureProcessor - - - Quilava - TextureImporter - TextureProcessor - - - Qwilfish - TextureImporter - TextureProcessor - - - Raichu - TextureImporter - TextureProcessor - - - Raikou - TextureImporter - TextureProcessor - - - Ralts - TextureImporter - TextureProcessor - - - Rapidash - TextureImporter - TextureProcessor - - - Raticate - TextureImporter - TextureProcessor - - - Rattata - TextureImporter - TextureProcessor - - - Rayquaza - TextureImporter - TextureProcessor - - - Remoraid - TextureImporter - TextureProcessor - - - Rhydon - TextureImporter - TextureProcessor - - - Rhyhorn - TextureImporter - TextureProcessor - - - Rhyperior - TextureImporter - TextureProcessor - - - Riolu - TextureImporter - TextureProcessor - - - Sandshrew - TextureImporter - TextureProcessor - - - Sandslash - TextureImporter - TextureProcessor - - - Scizor - TextureImporter - TextureProcessor - - - Scyther - TextureImporter - TextureProcessor - - - Seadra - TextureImporter - TextureProcessor - - - Seaking - TextureImporter - TextureProcessor - - - Seel - TextureImporter - TextureProcessor - - - Sentret - TextureImporter - TextureProcessor - - - Shellder - TextureImporter - TextureProcessor - - - Shuckle - TextureImporter - TextureProcessor - - - Skarmory - TextureImporter - TextureProcessor - - - Skiploom - TextureImporter - TextureProcessor - - - Slowbro - TextureImporter - TextureProcessor - - - Slowking - TextureImporter - TextureProcessor - - - Slowpoke - TextureImporter - TextureProcessor - - - Slugma - TextureImporter - TextureProcessor - - - Smeargle - TextureImporter - TextureProcessor - - - Smoochum - TextureImporter - TextureProcessor - - - Sneasel - TextureImporter - TextureProcessor - - - Snorlax - TextureImporter - TextureProcessor - - - Snubbull - TextureImporter - TextureProcessor - - - Spearow - TextureImporter - TextureProcessor - - - Spinarak - TextureImporter - TextureProcessor - - - Squirtle - TextureImporter - TextureProcessor - - - Stantler - TextureImporter - TextureProcessor - - - Starmie - TextureImporter - TextureProcessor - - - Staryu - TextureImporter - TextureProcessor - - - Steelix - TextureImporter - TextureProcessor - - - Sudowoodo - TextureImporter - TextureProcessor - - - Suicune - TextureImporter - TextureProcessor - - - Sunflora - TextureImporter - TextureProcessor - - - Sunkern - TextureImporter - TextureProcessor - - - Swinub - TextureImporter - TextureProcessor - - - Sylveon - TextureImporter - TextureProcessor - - - Tangela - TextureImporter - TextureProcessor - - - Tangrowth - TextureImporter - TextureProcessor - - - Tauros - TextureImporter - TextureProcessor - - - Teddiursa - TextureImporter - TextureProcessor - - - Tentacool - TextureImporter - TextureProcessor - - - Tentacruel - TextureImporter - TextureProcessor - - - Togekiss - TextureImporter - TextureProcessor - - - Togepi - TextureImporter - TextureProcessor - - - Togetic - TextureImporter - TextureProcessor - - - Totodile - TextureImporter - TextureProcessor - - - Typhlosion - TextureImporter - TextureProcessor - - - Tyranitar - TextureImporter - TextureProcessor - - - Tyrogue - TextureImporter - TextureProcessor - - - Umbreon - TextureImporter - TextureProcessor - - - Unown - TextureImporter - TextureProcessor - - - Unown_b - TextureImporter - TextureProcessor - - - Unown_c - TextureImporter - TextureProcessor - - - Unown_d - TextureImporter - TextureProcessor - - - Unown_e - TextureImporter - TextureProcessor - - - Unown_exclamation - TextureImporter - TextureProcessor - - - Unown_f - TextureImporter - TextureProcessor - - - Unown_g - TextureImporter - TextureProcessor - - - Unown_h - TextureImporter - TextureProcessor - - - Unown_i - TextureImporter - TextureProcessor - - - Unown_j - TextureImporter - TextureProcessor - - - Unown_k - TextureImporter - TextureProcessor - - - Unown_l - TextureImporter - TextureProcessor - - - Unown_m - TextureImporter - TextureProcessor - - - Unown_n - TextureImporter - TextureProcessor - - - Unown_o - TextureImporter - TextureProcessor - - - Unown_p - TextureImporter - TextureProcessor - - - Unown_q - TextureImporter - TextureProcessor - - - Unown_question - TextureImporter - TextureProcessor - - - Unown_r - TextureImporter - TextureProcessor - - - Unown_s - TextureImporter - TextureProcessor - - - Unown_t - TextureImporter - TextureProcessor - - - Unown_u - TextureImporter - TextureProcessor - - - Unown_v - TextureImporter - TextureProcessor - - - Unown_w - TextureImporter - TextureProcessor - - - Unown_x - TextureImporter - TextureProcessor - - - Unown_y - TextureImporter - TextureProcessor - - - Unown_z - TextureImporter - TextureProcessor - - - Ursaring - TextureImporter - TextureProcessor - - - Vaporeon - TextureImporter - TextureProcessor - - - Venomoth - TextureImporter - TextureProcessor - - - Venonat - TextureImporter - TextureProcessor - - - Venusaur - TextureImporter - TextureProcessor - - - Victreebel - TextureImporter - TextureProcessor - - - Vileplume - TextureImporter - TextureProcessor - - - Voltorb - TextureImporter - TextureProcessor - - - Vulpix - TextureImporter - TextureProcessor - - - Wartortle - TextureImporter - TextureProcessor - - - Weavile - TextureImporter - TextureProcessor - - - Weedle - TextureImporter - TextureProcessor - - - Weepinbell - TextureImporter - TextureProcessor - - - Weezing - TextureImporter - TextureProcessor - - - Wigglytuff - TextureImporter - TextureProcessor - - - Wobbuffet - TextureImporter - TextureProcessor - - - Wooper - TextureImporter - TextureProcessor - - - Wynaut - TextureImporter - TextureProcessor - - - Xatu - TextureImporter - TextureProcessor - - - Yanma - TextureImporter - TextureProcessor - - - Yanmega - TextureImporter - TextureProcessor - - - Zapdos - TextureImporter - TextureProcessor - - - Zubat - TextureImporter - TextureProcessor - - - - - xboxControllerButtonA - TextureImporter - TextureProcessor - - - xboxControllerButtonB - TextureImporter - TextureProcessor - - - xboxControllerButtonX - TextureImporter - TextureProcessor - - - xboxControllerButtonY - TextureImporter - TextureProcessor - - - xboxControllerLeftShoulder - TextureImporter - TextureProcessor - - - xboxControllerLeftThumbstick - TextureImporter - TextureProcessor - - - xboxControllerLeftTrigger - TextureImporter - TextureProcessor - - - xboxControllerRightShoulder - TextureImporter - TextureProcessor - - - xboxControllerRightThumbstick - TextureImporter - TextureProcessor - - - xboxControllerRightTrigger - TextureImporter - TextureProcessor - - - xboxControllerStart - TextureImporter - TextureProcessor - - - DiffuseShader - EffectImporter - EffectProcessor - - - Toon - EffectImporter - EffectProcessor - - - Ship - XImporter - ModelProcessor - - - ferry - XImporter - ModelProcessor - - - Boat - FbxImporter - ModelProcessor - - - boat - TextureImporter - TextureProcessor - - - Test_floor - XImporter - ModelProcessor - - - arena_colleseum - XImporter - ModelProcessor - - - Mountain - XImporter - ModelProcessor - - - P3DBuilding - XImporter - ModelProcessor - - - floor - TextureImporter - TextureProcessor - - - Shiny - XImporter - ModelProcessor - - - Normal - XImporter - ModelProcessor - - - kabigon_0_0 - TextureImporter - TextureProcessor - - - kabigon_0_3 - TextureImporter - TextureProcessor - - - kabigon_0_4 - TextureImporter - TextureProcessor - - - kabigon_1_0 - TextureImporter - TextureProcessor - - - kabigon_1_3 - TextureImporter - TextureProcessor - - - kabigon_1_4 - TextureImporter - TextureProcessor - - - SkyDome - XImporter - ModelProcessor - - - truck - XImporter - ModelProcessor - - - - - johto_wild - Mp3Importer - SongProcessor - Low - - - - - sevii islands_map - TextureImporter - TextureProcessor - - - - - captain - TextureImporter - TextureProcessor - - - - - ssaqua - Mp3Importer - SongProcessor - Low - - - - - ssaqua - Mp3Importer - SongProcessor - Low - - - - - 447 - Mp3Importer - SoundEffectProcessor - Low - - - 448 - Mp3Importer - SoundEffectProcessor - Low - - - - - 253 - Mp3Importer - SoundEffectProcessor - Low - - - 254 - Mp3Importer - SoundEffectProcessor - Low - - - 255 - Mp3Importer - SoundEffectProcessor - Low - - - 256 - Mp3Importer - SoundEffectProcessor - Low - - - 257 - Mp3Importer - SoundEffectProcessor - Low - - - 258 - Mp3Importer - SoundEffectProcessor - Low - - - 259 - Mp3Importer - SoundEffectProcessor - Low - - - 260 - Mp3Importer - SoundEffectProcessor - Low - - - 387 - Mp3Importer - SoundEffectProcessor - Low - - - 388 - Mp3Importer - SoundEffectProcessor - Low - - - 389 - Mp3Importer - SoundEffectProcessor - Low - - - 390 - Mp3Importer - SoundEffectProcessor - Low - - - 391 - Mp3Importer - SoundEffectProcessor - Low - - - 392 - Mp3Importer - SoundEffectProcessor - Low - - - 393 - Mp3Importer - SoundEffectProcessor - Low - - - 394 - Mp3Importer - SoundEffectProcessor - Low - - - 395 - Mp3Importer - SoundEffectProcessor - Low - - - 495 - Mp3Importer - SoundEffectProcessor - Low - - - 496 - Mp3Importer - SoundEffectProcessor - Low - - - 497 - Mp3Importer - SoundEffectProcessor - Low - - - 498 - Mp3Importer - SoundEffectProcessor - Low - - - 499 - Mp3Importer - SoundEffectProcessor - Low - - - 500 - Mp3Importer - SoundEffectProcessor - Low - - - 501 - Mp3Importer - SoundEffectProcessor - Low - - - 502 - Mp3Importer - SoundEffectProcessor - Low - - - 503 - Mp3Importer - SoundEffectProcessor - Low - - - - - Blaziken - TextureImporter - TextureProcessor - - - Chimchar - TextureImporter - TextureProcessor - - - Combusken - TextureImporter - TextureProcessor - - - Dewott - TextureImporter - TextureProcessor - - - Emboar - TextureImporter - TextureProcessor - - - Empoleon - TextureImporter - TextureProcessor - - - Grotle - TextureImporter - TextureProcessor - - - Grovyle - TextureImporter - TextureProcessor - - - Infernape - TextureImporter - TextureProcessor - - - Marshtomp - TextureImporter - TextureProcessor - - - Monferno - TextureImporter - TextureProcessor - - - Mudkip - TextureImporter - TextureProcessor - - - Oshawott - TextureImporter - TextureProcessor - - - Pignite - TextureImporter - TextureProcessor - - - Piplup - TextureImporter - TextureProcessor - - - Prinplup - TextureImporter - TextureProcessor - - - Samurott - TextureImporter - TextureProcessor - - - Sceptile - TextureImporter - TextureProcessor - - - Serperior - TextureImporter - TextureProcessor - - - Servine - TextureImporter - TextureProcessor - - - Snivy - TextureImporter - TextureProcessor - - - Swampert - TextureImporter - TextureProcessor - - - Tepig - TextureImporter - TextureProcessor - - - Torchic - TextureImporter - TextureProcessor - - - Torterra - TextureImporter - TextureProcessor - - - Treecko - TextureImporter - TextureProcessor - - - Turtwig - TextureImporter - TextureProcessor - - - - - 252 - TextureImporter - TextureProcessor - - - 253 - TextureImporter - TextureProcessor - - - 254 - TextureImporter - TextureProcessor - - - 255 - TextureImporter - TextureProcessor - - - 256 - TextureImporter - TextureProcessor - - - 257 - TextureImporter - TextureProcessor - - - 258 - TextureImporter - TextureProcessor - - - 259 - TextureImporter - TextureProcessor - - - 260 - TextureImporter - TextureProcessor - - - 387 - TextureImporter - TextureProcessor - - - 388 - TextureImporter - TextureProcessor - - - 389 - TextureImporter - TextureProcessor - - - 390 - TextureImporter - TextureProcessor - - - 391 - TextureImporter - TextureProcessor - - - 392 - TextureImporter - TextureProcessor - - - 393 - TextureImporter - TextureProcessor - - - 394 - TextureImporter - TextureProcessor - - - 395 - TextureImporter - TextureProcessor - - - 495 - TextureImporter - TextureProcessor - - - 496 - TextureImporter - TextureProcessor - - - 497 - TextureImporter - TextureProcessor - - - 498 - TextureImporter - TextureProcessor - - - 499 - TextureImporter - TextureProcessor - - - 500 - TextureImporter - TextureProcessor - - - 501 - TextureImporter - TextureProcessor - - - 502 - TextureImporter - TextureProcessor - - - 503 - TextureImporter - TextureProcessor - - - - - 252 - TextureImporter - TextureProcessor - - - 253 - TextureImporter - TextureProcessor - - - 254 - TextureImporter - TextureProcessor - - - 255 - TextureImporter - TextureProcessor - - - 256 - TextureImporter - TextureProcessor - - - 257 - TextureImporter - TextureProcessor - - - 258 - TextureImporter - TextureProcessor - - - 259 - TextureImporter - TextureProcessor - - - 260 - TextureImporter - TextureProcessor - - - 387 - TextureImporter - TextureProcessor - - - 388 - TextureImporter - TextureProcessor - - - 389 - TextureImporter - TextureProcessor - - - 390 - TextureImporter - TextureProcessor - - - 391 - TextureImporter - TextureProcessor - - - 392 - TextureImporter - TextureProcessor - - - 393 - TextureImporter - TextureProcessor - - - 394 - TextureImporter - TextureProcessor - - - 395 - TextureImporter - TextureProcessor - - - 495 - TextureImporter - TextureProcessor - - - 496 - TextureImporter - TextureProcessor - - - 497 - TextureImporter - TextureProcessor - - - 498 - TextureImporter - TextureProcessor - - - 499 - TextureImporter - TextureProcessor - - - 500 - TextureImporter - TextureProcessor - - - 501 - TextureImporter - TextureProcessor - - - 502 - TextureImporter - TextureProcessor - - - 503 - TextureImporter - TextureProcessor - - - - - 252 - Mp3Importer - SoundEffectProcessor - Low - - - - - gts - Mp3Importer - SongProcessor - Low - - - - - gts - Mp3Importer - SongProcessor - Low - - - - - WeatherIcons - TextureImporter - TextureProcessor - - - - - mailman - TextureImporter - TextureProcessor - - - - - Ground - TextureImporter - TextureProcessor - - - - - Forest - TextureImporter - TextureProcessor - - - - - 270 - Mp3Importer - SoundEffectProcessor - Low - - - 271 - Mp3Importer - SoundEffectProcessor - Low - - - 272 - Mp3Importer - SoundEffectProcessor - Low - - - 287 - Mp3Importer - SoundEffectProcessor - Low - - - 288 - Mp3Importer - SoundEffectProcessor - Low - - - 289 - Mp3Importer - SoundEffectProcessor - Low - - - 322 - Mp3Importer - SoundEffectProcessor - Low - - - 323 - Mp3Importer - SoundEffectProcessor - Low - - - 324 - Mp3Importer - SoundEffectProcessor - Low - - - 327 - Mp3Importer - SoundEffectProcessor - Low - - - 328 - Mp3Importer - SoundEffectProcessor - Low - - - 329 - Mp3Importer - SoundEffectProcessor - Low - - - 330 - Mp3Importer - SoundEffectProcessor - Low - - - 331 - Mp3Importer - SoundEffectProcessor - Low - - - 332 - Mp3Importer - SoundEffectProcessor - Low - - - 335 - Mp3Importer - SoundEffectProcessor - Low - - - 336 - Mp3Importer - SoundEffectProcessor - Low - - - 357 - Mp3Importer - SoundEffectProcessor - Low - - - 369 - Mp3Importer - SoundEffectProcessor - Low - - - 449 - Mp3Importer - SoundEffectProcessor - Low - - - 450 - Mp3Importer - SoundEffectProcessor - Low - - - 453 - Mp3Importer - SoundEffectProcessor - Low - - - 454 - Mp3Importer - SoundEffectProcessor - Low - - - 551 - Mp3Importer - SoundEffectProcessor - Low - - - 552 - Mp3Importer - SoundEffectProcessor - Low - - - 553 - Mp3Importer - SoundEffectProcessor - Low - - - 556 - Mp3Importer - SoundEffectProcessor - Low - - - 626 - Mp3Importer - SoundEffectProcessor - Low - - - 627 - Mp3Importer - SoundEffectProcessor - Low - - - 628 - Mp3Importer - SoundEffectProcessor - Low - - - - - Bouffalant - TextureImporter - TextureProcessor - - - Braviary - TextureImporter - TextureProcessor - - - Cacnea - TextureImporter - TextureProcessor - - - Cacturne - TextureImporter - TextureProcessor - - - Camerupt - TextureImporter - TextureProcessor - - - Croagunk - TextureImporter - TextureProcessor - - - Flygon - TextureImporter - TextureProcessor - - - Hippopotas - TextureImporter - TextureProcessor - - - Hippowdon - TextureImporter - TextureProcessor - - - Krokorok - TextureImporter - TextureProcessor - - - Krookodile - TextureImporter - TextureProcessor - - - Lombre - TextureImporter - TextureProcessor - - - Lotad - TextureImporter - TextureProcessor - - - Ludicolo - TextureImporter - TextureProcessor - - - Maractus - TextureImporter - TextureProcessor - - - Numel - TextureImporter - TextureProcessor - - - Relicanth - TextureImporter - TextureProcessor - - - Rufflet - TextureImporter - TextureProcessor - - - Sandile - TextureImporter - TextureProcessor - - - Seviper - TextureImporter - TextureProcessor - - - Slaking - TextureImporter - TextureProcessor - - - Slakoth - TextureImporter - TextureProcessor - - - Spinda - TextureImporter - TextureProcessor - - - Torkoal - TextureImporter - TextureProcessor - - - Toxicroak - TextureImporter - TextureProcessor - - - Trapinch - TextureImporter - TextureProcessor - - - Tropius - TextureImporter - TextureProcessor - - - Vibrava - TextureImporter - TextureProcessor - - - Vigoroth - TextureImporter - TextureProcessor - - - Zangoose - TextureImporter - TextureProcessor - - - - - 270 - TextureImporter - TextureProcessor - - - 271 - TextureImporter - TextureProcessor - - - 272 - TextureImporter - TextureProcessor - - - 287 - TextureImporter - TextureProcessor - - - 288 - TextureImporter - TextureProcessor - - - 289 - TextureImporter - TextureProcessor - - - 322 - TextureImporter - TextureProcessor - - - 323 - TextureImporter - TextureProcessor - - - 324 - TextureImporter - TextureProcessor - - - 327 - TextureImporter - TextureProcessor - - - 328 - TextureImporter - TextureProcessor - - - 329 - TextureImporter - TextureProcessor - - - 330 - TextureImporter - TextureProcessor - - - 331 - TextureImporter - TextureProcessor - - - 332 - TextureImporter - TextureProcessor - - - 335 - TextureImporter - TextureProcessor - - - 336 - TextureImporter - TextureProcessor - - - 357 - TextureImporter - TextureProcessor - - - 369 - TextureImporter - TextureProcessor - - - 449 - TextureImporter - TextureProcessor - - - 450 - TextureImporter - TextureProcessor - - - 453 - TextureImporter - TextureProcessor - - - 454 - TextureImporter - TextureProcessor - - - 551 - TextureImporter - TextureProcessor - - - 552 - TextureImporter - TextureProcessor - - - 553 - TextureImporter - TextureProcessor - - - 556 - TextureImporter - TextureProcessor - - - 626 - TextureImporter - TextureProcessor - - - 627 - TextureImporter - TextureProcessor - - - 628 - TextureImporter - TextureProcessor - - - - - 270 - TextureImporter - TextureProcessor - - - 271 - TextureImporter - TextureProcessor - - - 272 - TextureImporter - TextureProcessor - - - 287 - TextureImporter - TextureProcessor - - - 288 - TextureImporter - TextureProcessor - - - 289 - TextureImporter - TextureProcessor - - - - - 322 - TextureImporter - TextureProcessor - - - 323 - TextureImporter - TextureProcessor - - - 324 - TextureImporter - TextureProcessor - - - 327 - TextureImporter - TextureProcessor - - - 328 - TextureImporter - TextureProcessor - - - 329 - TextureImporter - TextureProcessor - - - 330 - TextureImporter - TextureProcessor - - - 331 - TextureImporter - TextureProcessor - - - 332 - TextureImporter - TextureProcessor - - - 335 - TextureImporter - TextureProcessor - - - 336 - TextureImporter - TextureProcessor - - - 357 - TextureImporter - TextureProcessor - - - 369 - TextureImporter - TextureProcessor - - - 449 - TextureImporter - TextureProcessor - - - 450 - TextureImporter - TextureProcessor - - - 453 - TextureImporter - TextureProcessor - - - 454 - TextureImporter - TextureProcessor - - - 551 - TextureImporter - TextureProcessor - - - 552 - TextureImporter - TextureProcessor - - - 553 - TextureImporter - TextureProcessor - - - 556 - TextureImporter - TextureProcessor - - - 626 - TextureImporter - TextureProcessor - - - 627 - TextureImporter - TextureProcessor - - - 628 - TextureImporter - TextureProcessor - - - - - Probopass - TextureImporter - TextureProcessor - - - - - SafariGate - TextureImporter - TextureProcessor - - - - - safari - Mp3Importer - SongProcessor - Low - - - - - safari - Mp3Importer - SongProcessor - Low - - - safarigate - Mp3Importer - SongProcessor - Low - - - - - Safari - TextureImporter - TextureProcessor - - - - - Froslass - TextureImporter - TextureProcessor - - - - - Dusknoir - TextureImporter - TextureProcessor - - - - - pokeball_set - Mp3Importer - SoundEffectProcessor - Low - - - - - Trophies - TextureImporter - TextureProcessor - - - - - bugcontest - Mp3Importer - SongProcessor - Low - - - - - bugcontest - Mp3Importer - SongProcessor - Low - - - - - 261 - Mp3Importer - SoundEffectProcessor - Low - - - 262 - Mp3Importer - SoundEffectProcessor - Low - - - 285 - Mp3Importer - SoundEffectProcessor - Low - - - 286 - Mp3Importer - SoundEffectProcessor - Low - - - 361 - Mp3Importer - SoundEffectProcessor - Low - - - 362 - Mp3Importer - SoundEffectProcessor - Low - - - 363 - Mp3Importer - SoundEffectProcessor - Low - - - 364 - Mp3Importer - SoundEffectProcessor - Low - - - 365 - Mp3Importer - SoundEffectProcessor - Low - - - 415 - Mp3Importer - SoundEffectProcessor - Low - - - 416 - Mp3Importer - SoundEffectProcessor - Low - - - 459 - Mp3Importer - SoundEffectProcessor - Low - - - 460 - Mp3Importer - SoundEffectProcessor - Low - - - 582 - Mp3Importer - SoundEffectProcessor - Low - - - 583 - Mp3Importer - SoundEffectProcessor - Low - - - 584 - Mp3Importer - SoundEffectProcessor - Low - - - 613 - Mp3Importer - SoundEffectProcessor - Low - - - 614 - Mp3Importer - SoundEffectProcessor - Low - - - - - 261 - TextureImporter - TextureProcessor - - - 262 - TextureImporter - TextureProcessor - - - 285 - TextureImporter - TextureProcessor - - - 286 - TextureImporter - TextureProcessor - - - 361 - TextureImporter - TextureProcessor - - - 362 - TextureImporter - TextureProcessor - - - 363 - TextureImporter - TextureProcessor - - - 364 - TextureImporter - TextureProcessor - - - 365 - TextureImporter - TextureProcessor - - - 415 - TextureImporter - TextureProcessor - - - 416 - TextureImporter - TextureProcessor - - - 459 - TextureImporter - TextureProcessor - - - 460 - TextureImporter - TextureProcessor - - - 582 - TextureImporter - TextureProcessor - - - 583 - TextureImporter - TextureProcessor - - - 584 - TextureImporter - TextureProcessor - - - 613 - TextureImporter - TextureProcessor - - - 614 - TextureImporter - TextureProcessor - - - - - 261 - TextureImporter - TextureProcessor - - - 262 - TextureImporter - TextureProcessor - - - 285 - TextureImporter - TextureProcessor - - - 286 - TextureImporter - TextureProcessor - - - 361 - TextureImporter - TextureProcessor - - - 362 - TextureImporter - TextureProcessor - - - 363 - TextureImporter - TextureProcessor - - - 364 - TextureImporter - TextureProcessor - - - 365 - TextureImporter - TextureProcessor - - - 415 - TextureImporter - TextureProcessor - - - 416 - TextureImporter - TextureProcessor - - - 459 - TextureImporter - TextureProcessor - - - 460 - TextureImporter - TextureProcessor - - - 582 - TextureImporter - TextureProcessor - - - 583 - TextureImporter - TextureProcessor - - - 584 - TextureImporter - TextureProcessor - - - 613 - TextureImporter - TextureProcessor - - - 614 - TextureImporter - TextureProcessor - - - - - Abomasnow - TextureImporter - TextureProcessor - - - Beartic - TextureImporter - TextureProcessor - - - Breloom - TextureImporter - TextureProcessor - - - Combee - TextureImporter - TextureProcessor - - - Cubchoo - TextureImporter - TextureProcessor - - - Glalie - TextureImporter - TextureProcessor - - - Mightyena - TextureImporter - TextureProcessor - - - Poochyena - TextureImporter - TextureProcessor - - - Sealeo - TextureImporter - TextureProcessor - - - Shroomish - TextureImporter - TextureProcessor - - - Snorunt - TextureImporter - TextureProcessor - - - Snover - TextureImporter - TextureProcessor - - - Spheal - TextureImporter - TextureProcessor - - - Vanillish - TextureImporter - TextureProcessor - - - Vanillite - TextureImporter - TextureProcessor - - - Vanilluxe - TextureImporter - TextureProcessor - - - Vespiquen - TextureImporter - TextureProcessor - - - Walrein - TextureImporter - TextureProcessor - - - - - ash - TextureImporter - TextureProcessor - - - - - ash2 - TextureImporter - TextureProcessor - - - - - pvp - Mp3Importer - SongProcessor - Low - - - - - pvp - Mp3Importer - SongProcessor - Low - - - - - 700 - TextureImporter - TextureProcessor - - - - - 700 - TextureImporter - TextureProcessor - - - - - 700 - Mp3Importer - SoundEffectProcessor - Low - - - - - storage - TextureImporter - TextureProcessor - - - - - 0 - TextureImporter - TextureProcessor - - - - - 1 - TextureImporter - TextureProcessor - - - 10 - TextureImporter - TextureProcessor - - - 2 - TextureImporter - TextureProcessor - - - 3 - TextureImporter - TextureProcessor - - - 4 - TextureImporter - TextureProcessor - - - 5 - TextureImporter - TextureProcessor - - - 6 - TextureImporter - TextureProcessor - - - 7 - TextureImporter - TextureProcessor - - - 8 - TextureImporter - TextureProcessor - - - 9 - TextureImporter - TextureProcessor - - - - - 11 - TextureImporter - TextureProcessor - - - - - 12 - TextureImporter - TextureProcessor - - - 13 - TextureImporter - TextureProcessor - - - - - 14 - TextureImporter - TextureProcessor - - - 15 - TextureImporter - TextureProcessor - - - 16 - TextureImporter - TextureProcessor - - - 17 - TextureImporter - TextureProcessor - - - 18 - TextureImporter - TextureProcessor - - - - - 19 - TextureImporter - TextureProcessor - - - 20 - TextureImporter - TextureProcessor - - - 21 - TextureImporter - TextureProcessor - - - - - 22 - TextureImporter - TextureProcessor - - - 23 - TextureImporter - TextureProcessor - - - - - btguide - TextureImporter - TextureProcessor - - - bt_nilllzz - TextureImporter - TextureProcessor - - - bt_statue - TextureImporter - TextureProcessor - - - construction - TextureImporter - TextureProcessor - - - - - 0 - TextureImporter - TextureProcessor - - - 1 - TextureImporter - TextureProcessor - - - 10 - TextureImporter - TextureProcessor - - - 11 - TextureImporter - TextureProcessor - - - 12 - TextureImporter - TextureProcessor - - - 13 - TextureImporter - TextureProcessor - - - 14 - TextureImporter - TextureProcessor - - - 15 - TextureImporter - TextureProcessor - - - 16 - TextureImporter - TextureProcessor - - - 17 - TextureImporter - TextureProcessor - - - 18 - TextureImporter - TextureProcessor - - - 19 - TextureImporter - TextureProcessor - - - 2 - TextureImporter - TextureProcessor - - - 20 - TextureImporter - TextureProcessor - - - 21 - TextureImporter - TextureProcessor - - - 22 - TextureImporter - TextureProcessor - - - 23 - TextureImporter - TextureProcessor - - - 24 - TextureImporter - TextureProcessor - - - 25 - TextureImporter - TextureProcessor - - - 26 - TextureImporter - TextureProcessor - - - 27 - TextureImporter - TextureProcessor - - - 28 - TextureImporter - TextureProcessor - - - 29 - TextureImporter - TextureProcessor - - - 3 - TextureImporter - TextureProcessor - - - 30 - TextureImporter - TextureProcessor - - - 31 - TextureImporter - TextureProcessor - - - 32 - TextureImporter - TextureProcessor - - - 33 - TextureImporter - TextureProcessor - - - 34 - TextureImporter - TextureProcessor - - - 35 - TextureImporter - TextureProcessor - - - 36 - TextureImporter - TextureProcessor - - - 37 - TextureImporter - TextureProcessor - - - 38 - TextureImporter - TextureProcessor - - - 39 - TextureImporter - TextureProcessor - - - 4 - TextureImporter - TextureProcessor - - - 40 - TextureImporter - TextureProcessor - - - 41 - TextureImporter - TextureProcessor - - - 42 - TextureImporter - TextureProcessor - - - 43 - TextureImporter - TextureProcessor - - - 44 - TextureImporter - TextureProcessor - - - 45 - TextureImporter - TextureProcessor - - - 46 - TextureImporter - TextureProcessor - - - 47 - TextureImporter - TextureProcessor - - - 48 - TextureImporter - TextureProcessor - - - 49 - TextureImporter - TextureProcessor - - - 5 - TextureImporter - TextureProcessor - - - 50 - TextureImporter - TextureProcessor - - - 51 - TextureImporter - TextureProcessor - - - 52 - TextureImporter - TextureProcessor - - - 53 - TextureImporter - TextureProcessor - - - 6 - TextureImporter - TextureProcessor - - - 7 - TextureImporter - TextureProcessor - - - 8 - TextureImporter - TextureProcessor - - - 9 - TextureImporter - TextureProcessor - - - - - frontier - Mp3Importer - SongProcessor - Low - - - - - frontier - Mp3Importer - SongProcessor - Low - - - - - battletower - Mp3Importer - SongProcessor - Low - - - - - gold ability - TextureImporter - TextureProcessor - - - gold knowledge - TextureImporter - TextureProcessor - - - silver ability - TextureImporter - TextureProcessor - - - silver knowledge - TextureImporter - TextureProcessor - - - - - 276 - TextureImporter - TextureProcessor - - - 277 - TextureImporter - TextureProcessor - - - 333 - TextureImporter - TextureProcessor - - - 334 - TextureImporter - TextureProcessor - - - 396 - TextureImporter - TextureProcessor - - - 397 - TextureImporter - TextureProcessor - - - 398 - TextureImporter - TextureProcessor - - - 519 - TextureImporter - TextureProcessor - - - 520 - TextureImporter - TextureProcessor - - - 521 - TextureImporter - TextureProcessor - - - - - 276 - TextureImporter - TextureProcessor - - - 277 - TextureImporter - TextureProcessor - - - 333 - TextureImporter - TextureProcessor - - - 334 - TextureImporter - TextureProcessor - - - 396 - TextureImporter - TextureProcessor - - - 397 - TextureImporter - TextureProcessor - - - 398 - TextureImporter - TextureProcessor - - - 519 - TextureImporter - TextureProcessor - - - 520 - TextureImporter - TextureProcessor - - - 521 - TextureImporter - TextureProcessor - - - - - Altaria - TextureImporter - TextureProcessor - - - Pidove - TextureImporter - TextureProcessor - - - Staraptor - TextureImporter - TextureProcessor - - - Staravia - TextureImporter - TextureProcessor - - - Starly - TextureImporter - TextureProcessor - - - Swablu - TextureImporter - TextureProcessor - - - Swellow - TextureImporter - TextureProcessor - - - Taillow - TextureImporter - TextureProcessor - - - Tranquill - TextureImporter - TextureProcessor - - - Unfezant - TextureImporter - TextureProcessor - - - - - 276 - Mp3Importer - SoundEffectProcessor - Low - - - 277 - Mp3Importer - SoundEffectProcessor - Low - - - 333 - Mp3Importer - SoundEffectProcessor - Low - - - 334 - Mp3Importer - SoundEffectProcessor - Low - - - 396 - Mp3Importer - SoundEffectProcessor - Low - - - 397 - Mp3Importer - SoundEffectProcessor - Low - - - 398 - Mp3Importer - SoundEffectProcessor - Low - - - 519 - Mp3Importer - SoundEffectProcessor - Low - - - 520 - Mp3Importer - SoundEffectProcessor - Low - - - 521 - Mp3Importer - SoundEffectProcessor - Low - - - - - Zoroark - TextureImporter - TextureProcessor - - - Zorua - TextureImporter - TextureProcessor - - - - - Tympole - TextureImporter - TextureProcessor - - - - - Shiftry - TextureImporter - TextureProcessor - - - - - Seismitoad - TextureImporter - TextureProcessor - - - - - Seedot - TextureImporter - TextureProcessor - - - - - Palpitoad - TextureImporter - TextureProcessor - - - - - Nuzleaf - TextureImporter - TextureProcessor - - - - - Axew - TextureImporter - TextureProcessor - - - Beldum - TextureImporter - TextureProcessor - - - Chandelure - TextureImporter - TextureProcessor - - - Clamperl - TextureImporter - TextureProcessor - - - Finneon - TextureImporter - TextureProcessor - - - Fraxure - TextureImporter - TextureProcessor - - - Gorebyss - TextureImporter - TextureProcessor - - - Hariyama - TextureImporter - TextureProcessor - - - Haxorus - TextureImporter - TextureProcessor - - - Huntail - TextureImporter - TextureProcessor - - - Klang - TextureImporter - TextureProcessor - - - Klink - TextureImporter - TextureProcessor - - - Klinklang - TextureImporter - TextureProcessor - - - Lampent - TextureImporter - TextureProcessor - - - Litwick - TextureImporter - TextureProcessor - - - Lumineon - TextureImporter - TextureProcessor - - - Makuhita - TextureImporter - TextureProcessor - - - Metagross - TextureImporter - TextureProcessor - - - Metang - TextureImporter - TextureProcessor - - - - - 273 - TextureImporter - TextureProcessor - - - 274 - TextureImporter - TextureProcessor - - - 275 - TextureImporter - TextureProcessor - - - 296 - TextureImporter - TextureProcessor - - - 297 - TextureImporter - TextureProcessor - - - 366 - TextureImporter - TextureProcessor - - - 367 - TextureImporter - TextureProcessor - - - 368 - TextureImporter - TextureProcessor - - - 374 - TextureImporter - TextureProcessor - - - 375 - TextureImporter - TextureProcessor - - - 376 - TextureImporter - TextureProcessor - - - 456 - TextureImporter - TextureProcessor - - - 457 - TextureImporter - TextureProcessor - - - 535 - TextureImporter - TextureProcessor - - - 536 - TextureImporter - TextureProcessor - - - 537 - TextureImporter - TextureProcessor - - - 570 - TextureImporter - TextureProcessor - - - 571 - TextureImporter - TextureProcessor - - - 599 - TextureImporter - TextureProcessor - - - 600 - TextureImporter - TextureProcessor - - - 601 - TextureImporter - TextureProcessor - - - 607 - TextureImporter - TextureProcessor - - - 608 - TextureImporter - TextureProcessor - - - 609 - TextureImporter - TextureProcessor - - - 610 - TextureImporter - TextureProcessor - - - 611 - TextureImporter - TextureProcessor - - - 612 - TextureImporter - TextureProcessor - - - - - 273 - TextureImporter - TextureProcessor - - - 274 - TextureImporter - TextureProcessor - - - 275 - TextureImporter - TextureProcessor - - - 296 - TextureImporter - TextureProcessor - - - 297 - TextureImporter - TextureProcessor - - - 366 - TextureImporter - TextureProcessor - - - 367 - TextureImporter - TextureProcessor - - - 368 - TextureImporter - TextureProcessor - - - 374 - TextureImporter - TextureProcessor - - - 375 - TextureImporter - TextureProcessor - - - 376 - TextureImporter - TextureProcessor - - - 456 - TextureImporter - TextureProcessor - - - 457 - TextureImporter - TextureProcessor - - - 535 - TextureImporter - TextureProcessor - - - 536 - TextureImporter - TextureProcessor - - - 537 - TextureImporter - TextureProcessor - - - 570 - TextureImporter - TextureProcessor - - - 571 - TextureImporter - TextureProcessor - - - 599 - TextureImporter - TextureProcessor - - - 600 - TextureImporter - TextureProcessor - - - 601 - TextureImporter - TextureProcessor - - - 607 - TextureImporter - TextureProcessor - - - 608 - TextureImporter - TextureProcessor - - - 609 - TextureImporter - TextureProcessor - - - 610 - TextureImporter - TextureProcessor - - - 611 - TextureImporter - TextureProcessor - - - 612 - TextureImporter - TextureProcessor - - - - - 273 - Mp3Importer - SoundEffectProcessor - Low - - - 274 - Mp3Importer - SoundEffectProcessor - Low - - - 275 - Mp3Importer - SoundEffectProcessor - Low - - - 296 - Mp3Importer - SoundEffectProcessor - Low - - - 297 - Mp3Importer - SoundEffectProcessor - Low - - - 366 - Mp3Importer - SoundEffectProcessor - Low - - - 367 - Mp3Importer - SoundEffectProcessor - Low - - - 368 - Mp3Importer - SoundEffectProcessor - Low - - - 374 - Mp3Importer - SoundEffectProcessor - Low - - - 375 - Mp3Importer - SoundEffectProcessor - Low - - - 376 - Mp3Importer - SoundEffectProcessor - Low - - - 456 - Mp3Importer - SoundEffectProcessor - Low - - - 457 - Mp3Importer - SoundEffectProcessor - Low - - - 535 - Mp3Importer - SoundEffectProcessor - Low - - - 536 - Mp3Importer - SoundEffectProcessor - Low - - - 537 - Mp3Importer - SoundEffectProcessor - Low - - - 570 - Mp3Importer - SoundEffectProcessor - Low - - - 571 - Mp3Importer - SoundEffectProcessor - Low - - - 599 - Mp3Importer - SoundEffectProcessor - Low - - - 600 - Mp3Importer - SoundEffectProcessor - Low - - - 601 - Mp3Importer - SoundEffectProcessor - Low - - - 607 - Mp3Importer - SoundEffectProcessor - Low - - - 608 - Mp3Importer - SoundEffectProcessor - Low - - - 609 - Mp3Importer - SoundEffectProcessor - Low - - - 610 - Mp3Importer - SoundEffectProcessor - Low - - - 611 - Mp3Importer - SoundEffectProcessor - Low - - - 612 - Mp3Importer - SoundEffectProcessor - Low - - - - - seaweed - TextureImporter - TextureProcessor - - - - - battlefactory - TextureImporter - TextureProcessor - - - - - single_heal - Mp3Importer - SoundEffectProcessor - Low - - - - - battlefrontier - TextureImporter - TextureProcessor - - - - - brain_battle - Mp3Importer - SongProcessor - Low - - - brain_battle_intro - Mp3Importer - SongProcessor - Low - - - - - battlefactory - Mp3Importer - SongProcessor - Low - - - - - battlefactory - Mp3Importer - SongProcessor - Low - - - - - johto_trainer - Mp3Importer - SongProcessor - Low - - - - - battletower - TextureImporter - TextureProcessor - - - - - pokegear - TextureImporter - TextureProcessor - - - - - destroy - Mp3Importer - SoundEffectProcessor - Low - - - - - enter - Mp3Importer - SoundEffectProcessor - Low - - - - - 636 - Mp3Importer - SoundEffectProcessor - Low - - - 637 - Mp3Importer - SoundEffectProcessor - Low - - - - - 442 - TextureImporter - TextureProcessor - - - 636 - TextureImporter - TextureProcessor - - - 637 - TextureImporter - TextureProcessor - - - - - 442 - TextureImporter - TextureProcessor - - - 636 - TextureImporter - TextureProcessor - - - 637 - TextureImporter - TextureProcessor - - - - - Larvesta - TextureImporter - TextureProcessor - - - Spiritomb - TextureImporter - TextureProcessor - - - Volcarona - TextureImporter - TextureProcessor - - - - - 263 - Mp3Importer - SoundEffectProcessor - Low - - - 264 - Mp3Importer - SoundEffectProcessor - Low - - - 265 - Mp3Importer - SoundEffectProcessor - Low - - - 266 - Mp3Importer - SoundEffectProcessor - Low - - - 267 - Mp3Importer - SoundEffectProcessor - Low - - - 268 - Mp3Importer - SoundEffectProcessor - Low - - - 269 - Mp3Importer - SoundEffectProcessor - Low - - - 278 - Mp3Importer - SoundEffectProcessor - Low - - - 279 - Mp3Importer - SoundEffectProcessor - Low - - - 304 - Mp3Importer - SoundEffectProcessor - Low - - - 305 - Mp3Importer - SoundEffectProcessor - Low - - - 306 - Mp3Importer - SoundEffectProcessor - Low - - - 307 - Mp3Importer - SoundEffectProcessor - Low - - - 308 - Mp3Importer - SoundEffectProcessor - Low - - - 315 - Mp3Importer - SoundEffectProcessor - Low - - - 341 - Mp3Importer - SoundEffectProcessor - Low - - - 342 - Mp3Importer - SoundEffectProcessor - Low - - - 349 - Mp3Importer - SoundEffectProcessor - Low - - - 350 - Mp3Importer - SoundEffectProcessor - Low - - - 371 - Mp3Importer - SoundEffectProcessor - Low - - - 372 - Mp3Importer - SoundEffectProcessor - Low - - - 373 - Mp3Importer - SoundEffectProcessor - Low - - - 399 - Mp3Importer - SoundEffectProcessor - Low - - - 400 - Mp3Importer - SoundEffectProcessor - Low - - - 406 - Mp3Importer - SoundEffectProcessor - Low - - - 407 - Mp3Importer - SoundEffectProcessor - Low - - - 418 - Mp3Importer - SoundEffectProcessor - Low - - - 419 - Mp3Importer - SoundEffectProcessor - Low - - - 422 - Mp3Importer - SoundEffectProcessor - Low - - - 423 - Mp3Importer - SoundEffectProcessor - Low - - - 436 - Mp3Importer - SoundEffectProcessor - Low - - - 437 - Mp3Importer - SoundEffectProcessor - Low - - - 443 - Mp3Importer - SoundEffectProcessor - Low - - - 444 - Mp3Importer - SoundEffectProcessor - Low - - - 445 - Mp3Importer - SoundEffectProcessor - Low - - - 451 - Mp3Importer - SoundEffectProcessor - Low - - - 452 - Mp3Importer - SoundEffectProcessor - Low - - - 504 - Mp3Importer - SoundEffectProcessor - Low - - - 505 - Mp3Importer - SoundEffectProcessor - Low - - - 506 - Mp3Importer - SoundEffectProcessor - Low - - - 507 - Mp3Importer - SoundEffectProcessor - Low - - - 508 - Mp3Importer - SoundEffectProcessor - Low - - - 509 - Mp3Importer - SoundEffectProcessor - Low - - - 510 - Mp3Importer - SoundEffectProcessor - Low - - - 511 - Mp3Importer - SoundEffectProcessor - Low - - - 512 - Mp3Importer - SoundEffectProcessor - Low - - - 513 - Mp3Importer - SoundEffectProcessor - Low - - - 514 - Mp3Importer - SoundEffectProcessor - Low - - - 515 - Mp3Importer - SoundEffectProcessor - Low - - - 516 - Mp3Importer - SoundEffectProcessor - Low - - - 522 - Mp3Importer - SoundEffectProcessor - Low - - - 523 - Mp3Importer - SoundEffectProcessor - Low - - - 531 - Mp3Importer - SoundEffectProcessor - Low - - - 540 - Mp3Importer - SoundEffectProcessor - Low - - - 541 - Mp3Importer - SoundEffectProcessor - Low - - - 542 - Mp3Importer - SoundEffectProcessor - Low - - - 546 - Mp3Importer - SoundEffectProcessor - Low - - - 547 - Mp3Importer - SoundEffectProcessor - Low - - - 557 - Mp3Importer - SoundEffectProcessor - Low - - - 558 - Mp3Importer - SoundEffectProcessor - Low - - - 580 - Mp3Importer - SoundEffectProcessor - Low - - - 581 - Mp3Importer - SoundEffectProcessor - Low - - - 592 - Mp3Importer - SoundEffectProcessor - Low - - - 593 - Mp3Importer - SoundEffectProcessor - Low - - - 602 - Mp3Importer - SoundEffectProcessor - Low - - - 603 - Mp3Importer - SoundEffectProcessor - Low - - - 604 - Mp3Importer - SoundEffectProcessor - Low - - - 621 - Mp3Importer - SoundEffectProcessor - Low - - - 629 - Mp3Importer - SoundEffectProcessor - Low - - - 630 - Mp3Importer - SoundEffectProcessor - Low - - - 633 - Mp3Importer - SoundEffectProcessor - Low - - - 634 - Mp3Importer - SoundEffectProcessor - Low - - - 635 - Mp3Importer - SoundEffectProcessor - Low - - - - - 263 - TextureImporter - TextureProcessor - - - 264 - TextureImporter - TextureProcessor - - - 265 - TextureImporter - TextureProcessor - - - 266 - TextureImporter - TextureProcessor - - - 267 - TextureImporter - TextureProcessor - - - 268 - TextureImporter - TextureProcessor - - - 269 - TextureImporter - TextureProcessor - - - 278 - TextureImporter - TextureProcessor - - - 279 - TextureImporter - TextureProcessor - - - 304 - TextureImporter - TextureProcessor - - - 305 - TextureImporter - TextureProcessor - - - 306 - TextureImporter - TextureProcessor - - - 307 - TextureImporter - TextureProcessor - - - 308 - TextureImporter - TextureProcessor - - - 315 - TextureImporter - TextureProcessor - - - 341 - TextureImporter - TextureProcessor - - - 342 - TextureImporter - TextureProcessor - - - 349 - TextureImporter - TextureProcessor - - - 350 - TextureImporter - TextureProcessor - - - 371 - TextureImporter - TextureProcessor - - - 372 - TextureImporter - TextureProcessor - - - 373 - TextureImporter - TextureProcessor - - - 399 - TextureImporter - TextureProcessor - - - 400 - TextureImporter - TextureProcessor - - - 406 - TextureImporter - TextureProcessor - - - 407 - TextureImporter - TextureProcessor - - - 418 - TextureImporter - TextureProcessor - - - 419 - TextureImporter - TextureProcessor - - - 422e - TextureImporter - TextureProcessor - - - 422w - TextureImporter - TextureProcessor - - - 423e - TextureImporter - TextureProcessor - - - 423w - TextureImporter - TextureProcessor - - - 427 - TextureImporter - TextureProcessor - - - 428 - TextureImporter - TextureProcessor - - - 436 - TextureImporter - TextureProcessor - - - 437 - TextureImporter - TextureProcessor - - - 443 - TextureImporter - TextureProcessor - - - 444 - TextureImporter - TextureProcessor - - - 445 - TextureImporter - TextureProcessor - - - 451 - TextureImporter - TextureProcessor - - - 452 - TextureImporter - TextureProcessor - - - 504 - TextureImporter - TextureProcessor - - - 505 - TextureImporter - TextureProcessor - - - 506 - TextureImporter - TextureProcessor - - - 507 - TextureImporter - TextureProcessor - - - 508 - TextureImporter - TextureProcessor - - - 509 - TextureImporter - TextureProcessor - - - 510 - TextureImporter - TextureProcessor - - - 511 - TextureImporter - TextureProcessor - - - 512 - TextureImporter - TextureProcessor - - - 513 - TextureImporter - TextureProcessor - - - 514 - TextureImporter - TextureProcessor - - - 515 - TextureImporter - TextureProcessor - - - 516 - TextureImporter - TextureProcessor - - - 522 - TextureImporter - TextureProcessor - - - 523 - TextureImporter - TextureProcessor - - - 531 - TextureImporter - TextureProcessor - - - 540 - TextureImporter - TextureProcessor - - - 541 - TextureImporter - TextureProcessor - - - 542 - TextureImporter - TextureProcessor - - - 546 - TextureImporter - TextureProcessor - - - 547 - TextureImporter - TextureProcessor - - - 557 - TextureImporter - TextureProcessor - - - 558 - TextureImporter - TextureProcessor - - - 580 - TextureImporter - TextureProcessor - - - 581 - TextureImporter - TextureProcessor - - - 592_m - TextureImporter - TextureProcessor - - - 593_m - TextureImporter - TextureProcessor - - - 602 - TextureImporter - TextureProcessor - - - 603 - TextureImporter - TextureProcessor - - - 604 - TextureImporter - TextureProcessor - - - 621 - TextureImporter - TextureProcessor - - - 629 - TextureImporter - TextureProcessor - - - 630 - TextureImporter - TextureProcessor - - - 633 - TextureImporter - TextureProcessor - - - 634 - TextureImporter - TextureProcessor - - - 635 - TextureImporter - TextureProcessor - - - - - 263 - TextureImporter - TextureProcessor - - - 264 - TextureImporter - TextureProcessor - - - 265 - TextureImporter - TextureProcessor - - - 266 - TextureImporter - TextureProcessor - - - 267 - TextureImporter - TextureProcessor - - - 268 - TextureImporter - TextureProcessor - - - 269 - TextureImporter - TextureProcessor - - - 278 - TextureImporter - TextureProcessor - - - 279 - TextureImporter - TextureProcessor - - - 304 - TextureImporter - TextureProcessor - - - 305 - TextureImporter - TextureProcessor - - - 306 - TextureImporter - TextureProcessor - - - 307 - TextureImporter - TextureProcessor - - - 308 - TextureImporter - TextureProcessor - - - 315 - TextureImporter - TextureProcessor - - - 341 - TextureImporter - TextureProcessor - - - 342 - TextureImporter - TextureProcessor - - - 349 - TextureImporter - TextureProcessor - - - 350 - TextureImporter - TextureProcessor - - - 371 - TextureImporter - TextureProcessor - - - 372 - TextureImporter - TextureProcessor - - - 373 - TextureImporter - TextureProcessor - - - 399 - TextureImporter - TextureProcessor - - - 400 - TextureImporter - TextureProcessor - - - 406 - TextureImporter - TextureProcessor - - - 407 - TextureImporter - TextureProcessor - - - 418 - TextureImporter - TextureProcessor - - - 419 - TextureImporter - TextureProcessor - - - 422e - TextureImporter - TextureProcessor - - - 422w - TextureImporter - TextureProcessor - - - 423e - TextureImporter - TextureProcessor - - - 423w - TextureImporter - TextureProcessor - - - 427 - TextureImporter - TextureProcessor - - - 428 - TextureImporter - TextureProcessor - - - 436 - TextureImporter - TextureProcessor - - - 437 - TextureImporter - TextureProcessor - - - 443 - TextureImporter - TextureProcessor - - - 444 - TextureImporter - TextureProcessor - - - 445 - TextureImporter - TextureProcessor - - - 451 - TextureImporter - TextureProcessor - - - 452 - TextureImporter - TextureProcessor - - - 504 - TextureImporter - TextureProcessor - - - 505 - TextureImporter - TextureProcessor - - - 506 - TextureImporter - TextureProcessor - - - 507 - TextureImporter - TextureProcessor - - - 508 - TextureImporter - TextureProcessor - - - 509 - TextureImporter - TextureProcessor - - - 510 - TextureImporter - TextureProcessor - - - 511 - TextureImporter - TextureProcessor - - - 512 - TextureImporter - TextureProcessor - - - 513 - TextureImporter - TextureProcessor - - - 514 - TextureImporter - TextureProcessor - - - 515 - TextureImporter - TextureProcessor - - - 516 - TextureImporter - TextureProcessor - - - 522 - TextureImporter - TextureProcessor - - - 523 - TextureImporter - TextureProcessor - - - 531 - TextureImporter - TextureProcessor - - - 540 - TextureImporter - TextureProcessor - - - 541 - TextureImporter - TextureProcessor - - - 542 - TextureImporter - TextureProcessor - - - 546 - TextureImporter - TextureProcessor - - - 547 - TextureImporter - TextureProcessor - - - 557 - TextureImporter - TextureProcessor - - - 558 - TextureImporter - TextureProcessor - - - 580 - TextureImporter - TextureProcessor - - - 581 - TextureImporter - TextureProcessor - - - 592_m - TextureImporter - TextureProcessor - - - 593_m - TextureImporter - TextureProcessor - - - 602 - TextureImporter - TextureProcessor - - - 603 - TextureImporter - TextureProcessor - - - 604 - TextureImporter - TextureProcessor - - - 621 - TextureImporter - TextureProcessor - - - 629 - TextureImporter - TextureProcessor - - - 630 - TextureImporter - TextureProcessor - - - 633 - TextureImporter - TextureProcessor - - - 634 - TextureImporter - TextureProcessor - - - 635 - TextureImporter - TextureProcessor - - - - - Aggron - TextureImporter - TextureProcessor - - - Aron - TextureImporter - TextureProcessor - - - Audino - TextureImporter - TextureProcessor - - - Bagon - TextureImporter - TextureProcessor - - - Beautifly - TextureImporter - TextureProcessor - - - Bibarel - TextureImporter - TextureProcessor - - - Bidoof - TextureImporter - TextureProcessor - - - Blitzle - TextureImporter - TextureProcessor - - - Bronzong - TextureImporter - TextureProcessor - - - Bronzor - TextureImporter - TextureProcessor - - - Budew - TextureImporter - TextureProcessor - - - Buizel - TextureImporter - TextureProcessor - - - Buneary - TextureImporter - TextureProcessor - - - Cascoon - TextureImporter - TextureProcessor - - - Corphish - TextureImporter - TextureProcessor - - - Cottonee - TextureImporter - TextureProcessor - - - Crawdaunt - TextureImporter - TextureProcessor - - - Crustle - TextureImporter - TextureProcessor - - - Deino - TextureImporter - TextureProcessor - - - Drapion - TextureImporter - TextureProcessor - - - Druddigon - TextureImporter - TextureProcessor - - - Ducklett - TextureImporter - TextureProcessor - - - Dustox - TextureImporter - TextureProcessor - - - Dwebble - TextureImporter - TextureProcessor - - - Eelektrik - TextureImporter - TextureProcessor - - - Eelektross - TextureImporter - TextureProcessor - - - Feebas - TextureImporter - TextureProcessor - - - Floatzel - TextureImporter - TextureProcessor - - - Frillish_m - TextureImporter - TextureProcessor - - - Gabite - TextureImporter - TextureProcessor - - - Garchomp - TextureImporter - TextureProcessor - - - Gastrodone - TextureImporter - TextureProcessor - - - Gastrodonw - TextureImporter - TextureProcessor - - - Gible - TextureImporter - TextureProcessor - - - Herdier - TextureImporter - TextureProcessor - - - Hydreigon - TextureImporter - TextureProcessor - - - Jellicent_m - TextureImporter - TextureProcessor - - - Lairon - TextureImporter - TextureProcessor - - - Leavanny - TextureImporter - TextureProcessor - - - Liepard - TextureImporter - TextureProcessor - - - Lillipup - TextureImporter - TextureProcessor - - - Linoone - TextureImporter - TextureProcessor - - - Lopunny - TextureImporter - TextureProcessor - - - Mandibuzz - TextureImporter - TextureProcessor - - - Medicham - TextureImporter - TextureProcessor - - - Meditite - TextureImporter - TextureProcessor - - - Milotic - TextureImporter - TextureProcessor - - - Panpour - TextureImporter - TextureProcessor - - - Pansage - TextureImporter - TextureProcessor - - - Pansear - TextureImporter - TextureProcessor - - - Patrat - TextureImporter - TextureProcessor - - - Pelipper - TextureImporter - TextureProcessor - - - Purrloin - TextureImporter - TextureProcessor - - - Roselia - TextureImporter - TextureProcessor - - - Roserade - TextureImporter - TextureProcessor - - - Salamence - TextureImporter - TextureProcessor - - - Sewaddle - TextureImporter - TextureProcessor - - - Shelgon - TextureImporter - TextureProcessor - - - Shellose - TextureImporter - TextureProcessor - - - Shellosw - TextureImporter - TextureProcessor - - - Silcoon - TextureImporter - TextureProcessor - - - Simipour - TextureImporter - TextureProcessor - - - Simisage - TextureImporter - TextureProcessor - - - Simisear - TextureImporter - TextureProcessor - - - Skorupi - TextureImporter - TextureProcessor - - - Stoutland - TextureImporter - TextureProcessor - - - Swadloon - TextureImporter - TextureProcessor - - - Swanna - TextureImporter - TextureProcessor - - - Tynamo - TextureImporter - TextureProcessor - - - Vullaby - TextureImporter - TextureProcessor - - - Watchog - TextureImporter - TextureProcessor - - - Whimsicott - TextureImporter - TextureProcessor - - - Wingull - TextureImporter - TextureProcessor - - - Wurmple - TextureImporter - TextureProcessor - - - Zebstrika - TextureImporter - TextureProcessor - - - Zigzagoon - TextureImporter - TextureProcessor - - - Zweilous - TextureImporter - TextureProcessor - - - - - 585_fa - TextureImporter - TextureProcessor - - - 585_sp - TextureImporter - TextureProcessor - - - 585_su - TextureImporter - TextureProcessor - - - 585_wi - TextureImporter - TextureProcessor - - - 586_fa - TextureImporter - TextureProcessor - - - 586_sp - TextureImporter - TextureProcessor - - - 586_su - TextureImporter - TextureProcessor - - - 586_wi - TextureImporter - TextureProcessor - - - - - 585_fa - TextureImporter - TextureProcessor - - - 585_sp - TextureImporter - TextureProcessor - - - 585_su - TextureImporter - TextureProcessor - - - 585_wi - TextureImporter - TextureProcessor - - - 586_fa - TextureImporter - TextureProcessor - - - 586_sp - TextureImporter - TextureProcessor - - - 586_su - TextureImporter - TextureProcessor - - - 586_wi - TextureImporter - TextureProcessor - - - - - Deerling_fa - TextureImporter - TextureProcessor - - - Deerling_sp - TextureImporter - TextureProcessor - - - Deerling_su - TextureImporter - TextureProcessor - - - Deerling_wi - TextureImporter - TextureProcessor - - - Sawsbuck_fa - TextureImporter - TextureProcessor - - - Sawsbuck_sp - TextureImporter - TextureProcessor - - - Sawsbuck_su - TextureImporter - TextureProcessor - - - Sawsbuck_wi - TextureImporter - TextureProcessor - - - - - 585 - Mp3Importer - SoundEffectProcessor - Low - - - 586 - Mp3Importer - SoundEffectProcessor - Low - - - - - Frillish_f - TextureImporter - TextureProcessor - - - - - 592_f - TextureImporter - TextureProcessor - - - - - Jellicent_f - TextureImporter - TextureProcessor - - - - - 593_f - TextureImporter - TextureProcessor - - - - - 592_f - TextureImporter - TextureProcessor - - - - - 593_f - TextureImporter - TextureProcessor - - - - - UnderwaterGround - TextureImporter - TextureProcessor - - - - - gamecorner - Mp3Importer - SongProcessor - Low - - - oakslab - Mp3Importer - SongProcessor - Low - - - - - gamecorner - Mp3Importer - SongProcessor - Low - - - oakslab - Mp3Importer - SongProcessor - Low - - - - - pokemon_lullaby - Mp3Importer - SongProcessor - Low - - - pokemon_march - Mp3Importer - SongProcessor - Low - - - - - pokemon_lullaby - Mp3Importer - SongProcessor - Low - - - pokemon_march - Mp3Importer - SongProcessor - Low - - - - - unown_broadcast - Mp3Importer - SongProcessor - Low - - - - - rocket_broadcast - Mp3Importer - SongProcessor - Low - - - - - evolution - Mp3Importer - SongProcessor - Low - - - - - evolution - Mp3Importer - SongProcessor - Low - - - - - success - Mp3Importer - SoundEffectProcessor - Low - - - - - pokedexhabitat - TextureImporter - TextureProcessor - - - - - PokemonMenuShiny - TextureImporter - TextureProcessor - - - - - Truck - FbxImporter - ModelProcessor - - - dam tuck_grp - TextureImporter - TextureProcessor - - - - - kanto_leader - Mp3Importer - SongProcessor - Low - - - kanto_leader_intro - Mp3Importer - SongProcessor - Low - - - kanto_trainer - Mp3Importer - SongProcessor - Low - - - kanto_trainer_intro - Mp3Importer - SongProcessor - Low - - - RouteMusic7 - Mp3Importer - SongProcessor - Low - - - vermilion - Mp3Importer - SongProcessor - Low - - - - - kanto_leader - Mp3Importer - SongProcessor - Low - - - kanto_trainer - Mp3Importer - SongProcessor - Low - - - RouteMusic7 - Mp3Importer - SongProcessor - Low - - - vermilion - Mp3Importer - SongProcessor - Low - - - - - lightning - TextureImporter - TextureProcessor - - - LtSurge - TextureImporter - TextureProcessor - - - - - diglettscave - Mp3Importer - SongProcessor - Low - - - kanto_wild - Mp3Importer - SongProcessor - Low - - - kanto_wild_intro - Mp3Importer - SongProcessor - Low - - - - - diglettscave - Mp3Importer - SongProcessor - Low - - - - - 661 - TextureImporter - TextureProcessor - - - 662 - TextureImporter - TextureProcessor - - - 663 - TextureImporter - TextureProcessor - - - - - 661 - TextureImporter - TextureProcessor - - - 662 - TextureImporter - TextureProcessor - - - 663 - TextureImporter - TextureProcessor - - - - - Fletchinder - TextureImporter - TextureProcessor - - - Fletchling - TextureImporter - TextureProcessor - - - - - Talonflame - TextureImporter - TextureProcessor - - - - - 661 - Mp3Importer - SoundEffectProcessor - Low - - - 662 - Mp3Importer - SoundEffectProcessor - Low - - - 663 - Mp3Importer - SoundEffectProcessor - Low - - - - - Leaf - TextureImporter - TextureProcessor - - - - - Anvil - TextureImporter - TextureProcessor - - - - - mrhippocrit - TextureImporter - TextureProcessor - - - - - Pancham - TextureImporter - TextureProcessor - - - Pangoro - TextureImporter - TextureProcessor - - - - - 674 - TextureImporter - TextureProcessor - - - 675 - TextureImporter - TextureProcessor - - - - - 674 - TextureImporter - TextureProcessor - - - 675 - TextureImporter - TextureProcessor - - - - - 674 - Mp3Importer - SoundEffectProcessor - Low - - - 675 - Mp3Importer - SoundEffectProcessor - Low - - - - - no_texture - TextureImporter - TextureProcessor - - - - - thunder - TextureImporter - TextureProcessor - - - - - boulder - TextureImporter - TextureProcessor - - - cascade - TextureImporter - TextureProcessor - - - - - Luxio - TextureImporter - TextureProcessor - - - Luxray - TextureImporter - TextureProcessor - - - Rotom - TextureImporter - TextureProcessor - - - Rotom_fan - TextureImporter - TextureProcessor - - - Rotom_frost - TextureImporter - TextureProcessor - - - Rotom_heat - TextureImporter - TextureProcessor - - - Rotom_mow - TextureImporter - TextureProcessor - - - Rotom_wash - TextureImporter - TextureProcessor - - - Shinx - TextureImporter - TextureProcessor - - - - - 403 - TextureImporter - TextureProcessor - - - 404 - TextureImporter - TextureProcessor - - - 405 - TextureImporter - TextureProcessor - - - 479 - TextureImporter - TextureProcessor - - - 479_fan - TextureImporter - TextureProcessor - - - 479_frost - TextureImporter - TextureProcessor - - - 479_heat - TextureImporter - TextureProcessor - - - 479_mow - TextureImporter - TextureProcessor - - - 479_wash - TextureImporter - TextureProcessor - - - - - 403 - TextureImporter - TextureProcessor - - - 404 - TextureImporter - TextureProcessor - - - 405 - TextureImporter - TextureProcessor - - - 479 - TextureImporter - TextureProcessor - - - 479_fan - TextureImporter - TextureProcessor - - - 479_frost - TextureImporter - TextureProcessor - - - 479_heat - TextureImporter - TextureProcessor - - - 479_mow - TextureImporter - TextureProcessor - - - 479_wash - TextureImporter - TextureProcessor - - - - - 403 - Mp3Importer - SoundEffectProcessor - Low - - - 404 - Mp3Importer - SoundEffectProcessor - Low - - - 405 - Mp3Importer - SoundEffectProcessor - Low - - - 479 - Mp3Importer - SoundEffectProcessor - Low - - - - - daycycle - TextureImporter - TextureProcessor - - - - - Clouds1 - TextureImporter - TextureProcessor - - - - - Stars - TextureImporter - TextureProcessor - - - - - sun - TextureImporter - TextureProcessor - - - - - moon - TextureImporter - TextureProcessor - - - - - CloudsWeather - TextureImporter - TextureProcessor - - - - - mtsilver - TextureImporter - TextureProcessor - - - - - misty - TextureImporter - TextureProcessor - - - - - cerulean - Mp3Importer - SongProcessor - Low - - - - - cerulean - Mp3Importer - SongProcessor - Low - - - - - RouteMusic9 - Mp3Importer - SongProcessor - Low - - - - - BattleBox - TextureImporter - TextureProcessor - - - - - lobby - Mp3Importer - SongProcessor - Low - - - - - lobby - Mp3Importer - SongProcessor - Low - - - - - 85 - TextureImporter - TextureProcessor - - - - - cerulean_cave - Mp3Importer - SongProcessor - Low - - - pokeflute - Mp3Importer - SongProcessor - Low - - - RouteMusic8 - Mp3Importer - SongProcessor - Low - - - - - cerulean_cave - Mp3Importer - SongProcessor - Low - - - pokeflute - Mp3Importer - SongProcessor - Low - - - RouteMusic8 - Mp3Importer - SongProcessor - Low - - - - - 708 - TextureImporter - TextureProcessor - - - 709 - TextureImporter - TextureProcessor - - - - - 708 - TextureImporter - TextureProcessor - - - 709 - TextureImporter - TextureProcessor - - - - - Phantump - TextureImporter - TextureProcessor - - - Trevenant - TextureImporter - TextureProcessor - - - - - 708 - Mp3Importer - SoundEffectProcessor - Low - - - 709 - Mp3Importer - SoundEffectProcessor - Low - - - - - Substitute - TextureImporter - TextureProcessor - - - - - Menu - TextureImporter - TextureProcessor - - - - - Back - TextureImporter - TextureProcessor - - - Front - TextureImporter - TextureProcessor - - - - - 420 - Mp3Importer - SoundEffectProcessor - Low - - - 421 - Mp3Importer - SoundEffectProcessor - Low - - - 590 - Mp3Importer - SoundEffectProcessor - Low - - - 591 - Mp3Importer - SoundEffectProcessor - Low - - - 595 - Mp3Importer - SoundEffectProcessor - Low - - - 596 - Mp3Importer - SoundEffectProcessor - Low - - - 597 - Mp3Importer - SoundEffectProcessor - Low - - - 598 - Mp3Importer - SoundEffectProcessor - Low - - - - - Amoonguss - TextureImporter - TextureProcessor - - - Cherrim - TextureImporter - TextureProcessor - - - Cherubi - TextureImporter - TextureProcessor - - - Ferroseed - TextureImporter - TextureProcessor - - - Ferrothorn - TextureImporter - TextureProcessor - - - Foongus - TextureImporter - TextureProcessor - - - Galvantula - TextureImporter - TextureProcessor - - - Joltik - TextureImporter - TextureProcessor - - - - - 420 - TextureImporter - TextureProcessor - - - 421 - TextureImporter - TextureProcessor - - - 590 - TextureImporter - TextureProcessor - - - 591 - TextureImporter - TextureProcessor - - - 595 - TextureImporter - TextureProcessor - - - 596 - TextureImporter - TextureProcessor - - - 597 - TextureImporter - TextureProcessor - - - 598 - TextureImporter - TextureProcessor - - - - - 420 - TextureImporter - TextureProcessor - - - 421 - TextureImporter - TextureProcessor - - - 590 - TextureImporter - TextureProcessor - - - 591 - TextureImporter - TextureProcessor - - - 595 - TextureImporter - TextureProcessor - - - 596 - TextureImporter - TextureProcessor - - - 597 - TextureImporter - TextureProcessor - - - 598 - TextureImporter - TextureProcessor - - - - - shuttle - TextureImporter - TextureProcessor - - - - - 141F - TextureImporter - TextureProcessor - - - 142F - TextureImporter - TextureProcessor - - - Brock - TextureImporter - TextureProcessor - - - - - mtmoonsq - Mp3Importer - SongProcessor - Low - - - RouteMusic10 - Mp3Importer - SongProcessor - Low - - - RouteMusic11 - Mp3Importer - SongProcessor - Low - - - viridian_forest - Mp3Importer - SongProcessor - Low - - - - - RouteMusic10 - Mp3Importer - SongProcessor - Low - - - RouteMusic11 - Mp3Importer - SongProcessor - Low - - - - - credits - Mp3Importer - SongProcessor - Low - - - indigo - Mp3Importer - SongProcessor - Low - - - RouteMusic5 - Mp3Importer - SongProcessor - Low - - - - - ferry - TextureImporter - TextureProcessor - - - - - noibat - TextureImporter - TextureProcessor - - - noivern - TextureImporter - TextureProcessor - - - - - 714 - TextureImporter - TextureProcessor - - - 715 - TextureImporter - TextureProcessor - - - - - 714 - TextureImporter - TextureProcessor - - - 715 - TextureImporter - TextureProcessor - - - - - 714 - Mp3Importer - SoundEffectProcessor - Low - - - 715 - Mp3Importer - SoundEffectProcessor - Low - - - - - sevii - TextureImporter - TextureProcessor - - - - - Lorelei - TextureImporter - TextureProcessor - - - - - jump_ledge - Mp3Importer - SoundEffectProcessor - Low - - - - - pickup - Mp3Importer - SoundEffectProcessor - Low - - - - - TextFont - TextureImporter - FontTextureProcessor - - - - - pc_logon - Mp3Importer - SoundEffectProcessor - Low - - - pc_off - Mp3Importer - SoundEffectProcessor - Low - - - pc_turnon - Mp3Importer - SoundEffectProcessor - Low - - - - - menu_open - Mp3Importer - SoundEffectProcessor - Low - - - - - normaldamage - Mp3Importer - SoundEffectProcessor - Low - - - not_effective - Mp3Importer - SoundEffectProcessor - Low - - - super_effective - Mp3Importer - SoundEffectProcessor - Low - - - - - ballshake - Mp3Importer - SoundEffectProcessor - Low - - - - - throw - Mp3Importer - SoundEffectProcessor - Low - - - - - buy2 - Mp3Importer - SoundEffectProcessor - Low - - - - - exp_max - Mp3Importer - SoundEffectProcessor - Low - - - - - egg_hatch - Mp3Importer - SoundEffectProcessor - Low - - - - - effect_pound - Mp3Importer - SoundEffectProcessor - Low - - - - - azalea - Mp3Importer - SongProcessor - - - - - effect_ember - Mp3Importer - SoundEffectProcessor - Low - - - effect_fly - Mp3Importer - SoundEffectProcessor - Low - - - effect_ice1 - Mp3Importer - SoundEffectProcessor - Low - - - effect_poison - Mp3Importer - SoundEffectProcessor - Low - - - effect_thundershock2 - Mp3Importer - SoundEffectProcessor - Low - - - - - pokeball_land - Mp3Importer - SoundEffectProcessor - Low - - - - - shiny - Mp3Importer - SoundEffectProcessor - Low - - - - - shutter - Mp3Importer - SoundEffectProcessor - Low - - - - - repel_use - Mp3Importer - SoundEffectProcessor - Low - - - - - ice_break - Mp3Importer - SoundEffectProcessor - Low - - - ice_crack - Mp3Importer - SoundEffectProcessor - Low - - - success_small - Mp3Importer - SoundEffectProcessor - Low - - - - - trhq_alarm - Mp3Importer - SoundEffectProcessor - Low - - - - - pokegear_off - Mp3Importer - SoundEffectProcessor - Low - - - pokegear_on - Mp3Importer - SoundEffectProcessor - Low - - - - - rankplace - Mp3Importer - SoundEffectProcessor - Low - - - - - teleport - Mp3Importer - SoundEffectProcessor - Low - - - - - Looker - TextureImporter - TextureProcessor - - - - - Looker_encounter - Mp3Importer - SongProcessor - Low - - - - - Sabrina - TextureImporter - TextureProcessor - - - - - ho-oh_battle - Mp3Importer - SongProcessor - Low - - - ho-oh_battle_intro - Mp3Importer - SongProcessor - Low - - - lugia_battle - Mp3Importer - SongProcessor - Low - - - lugia_battle_intro - Mp3Importer - SongProcessor - Low - - - suicune_battle - Mp3Importer - SongProcessor - Low - - - suicune_battle_intro - Mp3Importer - SongProcessor - Low - - - - - ho-oh_battle - Mp3Importer - SongProcessor - Low - - - lugia_battle - Mp3Importer - SongProcessor - Low - - - suicune_battle - Mp3Importer - SongProcessor - Low - - - - - entei_battle - Mp3Importer - SongProcessor - Low - - - entei_battle_intro - Mp3Importer - SongProcessor - Low - - - - - entei_battle - Mp3Importer - SongProcessor - Low - - - - - raikou_battle - Mp3Importer - SongProcessor - Low - - - - - raikou_battle_intro - Mp3Importer - SongProcessor - Low - - - - - raikou_battle - Mp3Importer - SongProcessor - Low - - - - - Erika - TextureImporter - TextureProcessor - - - MasterRoshi - TextureImporter - TextureProcessor - - - - - celadon - Mp3Importer - SongProcessor - Low - - - - - celadon - Mp3Importer - SongProcessor - Low - - - - - marsh - TextureImporter - TextureProcessor - - - rainbow - TextureImporter - TextureProcessor - - - - - magnettrain - Mp3Importer - SoundEffectProcessor - Low - - - - - frontier - TextureImporter - TextureProcessor - - - - - 140l155 - TextureImporter - TextureProcessor - - - - - volcano - TextureImporter - TextureProcessor - - - - - effect_thunderbolt - Mp3Importer - SoundEffectProcessor - Low - - - - - Boat - TextureImporter - TextureProcessor - - - - - 681 - TextureImporter - TextureProcessor - - - 681_blade - TextureImporter - TextureProcessor - - - - - 681 - TextureImporter - TextureProcessor - - - 681_blade - TextureImporter - TextureProcessor - - - - - Aegislash_blade - TextureImporter - TextureProcessor - - - Aegislash - TextureImporter - TextureProcessor - - - - - 299 - TextureImporter - TextureProcessor - - - 302 - TextureImporter - TextureProcessor - - - 337 - TextureImporter - TextureProcessor - - - 338 - TextureImporter - TextureProcessor - - - 343 - TextureImporter - TextureProcessor - - - 344 - TextureImporter - TextureProcessor - - - 345 - TextureImporter - TextureProcessor - - - 346 - TextureImporter - TextureProcessor - - - 347 - TextureImporter - TextureProcessor - - - 348 - TextureImporter - TextureProcessor - - - 385 - TextureImporter - TextureProcessor - - - 408 - TextureImporter - TextureProcessor - - - 409 - TextureImporter - TextureProcessor - - - 410 - TextureImporter - TextureProcessor - - - 411 - TextureImporter - TextureProcessor - - - - - 524 - TextureImporter - TextureProcessor - - - 525 - TextureImporter - TextureProcessor - - - 526 - TextureImporter - TextureProcessor - - - 561 - TextureImporter - TextureProcessor - - - 562 - TextureImporter - TextureProcessor - - - 563 - TextureImporter - TextureProcessor - - - 564 - TextureImporter - TextureProcessor - - - 565 - TextureImporter - TextureProcessor - - - 566 - TextureImporter - TextureProcessor - - - 567 - TextureImporter - TextureProcessor - - - 605 - TextureImporter - TextureProcessor - - - 606 - TextureImporter - TextureProcessor - - - 622 - TextureImporter - TextureProcessor - - - 623 - TextureImporter - TextureProcessor - - - 679 - TextureImporter - TextureProcessor - - - 680 - TextureImporter - TextureProcessor - - - 696 - TextureImporter - TextureProcessor - - - 697 - TextureImporter - TextureProcessor - - - 698 - TextureImporter - TextureProcessor - - - 699 - TextureImporter - TextureProcessor - - - 703 - TextureImporter - TextureProcessor - - - 707 - TextureImporter - TextureProcessor - - - - - 299 - TextureImporter - TextureProcessor - - - 302 - TextureImporter - TextureProcessor - - - 337 - TextureImporter - TextureProcessor - - - 338 - TextureImporter - TextureProcessor - - - 343 - TextureImporter - TextureProcessor - - - 344 - TextureImporter - TextureProcessor - - - 345 - TextureImporter - TextureProcessor - - - 346 - TextureImporter - TextureProcessor - - - 347 - TextureImporter - TextureProcessor - - - 348 - TextureImporter - TextureProcessor - - - 385 - TextureImporter - TextureProcessor - - - 408 - TextureImporter - TextureProcessor - - - 409 - TextureImporter - TextureProcessor - - - 410 - TextureImporter - TextureProcessor - - - 411 - TextureImporter - TextureProcessor - - - 524 - TextureImporter - TextureProcessor - - - 525 - TextureImporter - TextureProcessor - - - 526 - TextureImporter - TextureProcessor - - - 561 - TextureImporter - TextureProcessor - - - 562 - TextureImporter - TextureProcessor - - - 563 - TextureImporter - TextureProcessor - - - 564 - TextureImporter - TextureProcessor - - - 565 - TextureImporter - TextureProcessor - - - 566 - TextureImporter - TextureProcessor - - - 567 - TextureImporter - TextureProcessor - - - 605 - TextureImporter - TextureProcessor - - - 606 - TextureImporter - TextureProcessor - - - 622 - TextureImporter - TextureProcessor - - - 623 - TextureImporter - TextureProcessor - - - 679 - TextureImporter - TextureProcessor - - - 680 - TextureImporter - TextureProcessor - - - 696 - TextureImporter - TextureProcessor - - - 697 - TextureImporter - TextureProcessor - - - 698 - TextureImporter - TextureProcessor - - - 699 - TextureImporter - TextureProcessor - - - 703 - TextureImporter - TextureProcessor - - - 707 - TextureImporter - TextureProcessor - - - - - amaura - TextureImporter - TextureProcessor - - - Anorith - TextureImporter - TextureProcessor - - - Archen - TextureImporter - TextureProcessor - - - Archeops - TextureImporter - TextureProcessor - - - Armaldo - TextureImporter - TextureProcessor - - - Aurorus - TextureImporter - TextureProcessor - - - Baltoy - TextureImporter - TextureProcessor - - - Bastiodon - TextureImporter - TextureProcessor - - - Beheeyem - TextureImporter - TextureProcessor - - - Boldore - TextureImporter - TextureProcessor - - - carbink - TextureImporter - TextureProcessor - - - Carracosta - TextureImporter - TextureProcessor - - - Claydol - TextureImporter - TextureProcessor - - - Cofagrigus - TextureImporter - TextureProcessor - - - Cradily - TextureImporter - TextureProcessor - - - Cranidos - TextureImporter - TextureProcessor - - - doublade - TextureImporter - TextureProcessor - - - Elgyem - TextureImporter - TextureProcessor - - - Gigalith - TextureImporter - TextureProcessor - - - Golett - TextureImporter - TextureProcessor - - - Golurk - TextureImporter - TextureProcessor - - - honedge - TextureImporter - TextureProcessor - - - Jirachi - TextureImporter - TextureProcessor - - - klefki - TextureImporter - TextureProcessor - - - Lileep - TextureImporter - TextureProcessor - - - - - Lunatone - TextureImporter - TextureProcessor - - - Nosepass - TextureImporter - TextureProcessor - - - Rampardos - TextureImporter - TextureProcessor - - - Roggenrola - TextureImporter - TextureProcessor - - - Sableye - TextureImporter - TextureProcessor - - - Shieldon - TextureImporter - TextureProcessor - - - Sigilyph - TextureImporter - TextureProcessor - - - Solrock - TextureImporter - TextureProcessor - - - Tirtouga - TextureImporter - TextureProcessor - - - tyrantrum - TextureImporter - TextureProcessor - - - tyrunt - TextureImporter - TextureProcessor - - - Yamask - TextureImporter - TextureProcessor - - - - - space_legend_battle - Mp3Importer - SongProcessor - Low - - - startower - Mp3Importer - SongProcessor - Low - - - - - ancient_ruins - Mp3Importer - SongProcessor - Low - - - space_legend_battle - Mp3Importer - SongProcessor - Low - - - space_legend_battle_intro - Mp3Importer - SongProcessor - Low - - - startower - Mp3Importer - SongProcessor - Low - - - - - queen - TextureImporter - TextureProcessor - - - robot1 - TextureImporter - TextureProcessor - - - robot2 - TextureImporter - TextureProcessor - - - robot3 - TextureImporter - TextureProcessor - - - - - chess - TextureImporter - TextureProcessor - - - dungeon - TextureImporter - TextureProcessor - - - Rotomroom - TextureImporter - TextureProcessor - - - - - cyclingroad - TextureImporter - TextureProcessor - - - - - kantogates - TextureImporter - TextureProcessor - - - - - rock - TextureImporter - TextureProcessor - - - - - Janine - TextureImporter - TextureProcessor - - - - - soul - TextureImporter - TextureProcessor - - - - - 299 - Mp3Importer - SoundEffectProcessor - Low - - - 302 - Mp3Importer - SoundEffectProcessor - Low - - - 337 - Mp3Importer - SoundEffectProcessor - Low - - - 338 - Mp3Importer - SoundEffectProcessor - Low - - - 343 - Mp3Importer - SoundEffectProcessor - Low - - - 344 - Mp3Importer - SoundEffectProcessor - Low - - - 345 - Mp3Importer - SoundEffectProcessor - Low - - - 346 - Mp3Importer - SoundEffectProcessor - Low - - - 347 - Mp3Importer - SoundEffectProcessor - Low - - - 348 - Mp3Importer - SoundEffectProcessor - Low - - - 385 - Mp3Importer - SoundEffectProcessor - Low - - - - - 409 - Mp3Importer - SoundEffectProcessor - Low - - - 410 - Mp3Importer - SoundEffectProcessor - Low - - - 411 - Mp3Importer - SoundEffectProcessor - Low - - - 412 - Mp3Importer - SoundEffectProcessor - Low - - - 524 - Mp3Importer - SoundEffectProcessor - Low - - - 525 - Mp3Importer - SoundEffectProcessor - Low - - - 526 - Mp3Importer - SoundEffectProcessor - Low - - - 561 - Mp3Importer - SoundEffectProcessor - Low - - - 562 - Mp3Importer - SoundEffectProcessor - Low - - - 563 - Mp3Importer - SoundEffectProcessor - Low - - - 564 - Mp3Importer - SoundEffectProcessor - Low - - - 565 - Mp3Importer - SoundEffectProcessor - Low - - - 566 - Mp3Importer - SoundEffectProcessor - Low - - - 567 - Mp3Importer - SoundEffectProcessor - Low - - - 605 - Mp3Importer - SoundEffectProcessor - Low - - - 606 - Mp3Importer - SoundEffectProcessor - Low - - - 623 - Mp3Importer - SoundEffectProcessor - Low - - - 624 - Mp3Importer - SoundEffectProcessor - Low - - - 679 - Mp3Importer - SoundEffectProcessor - Low - - - 680 - Mp3Importer - SoundEffectProcessor - Low - - - 681 - Mp3Importer - SoundEffectProcessor - Low - - - 696 - Mp3Importer - SoundEffectProcessor - Low - - - 697 - Mp3Importer - SoundEffectProcessor - Low - - - 698 - Mp3Importer - SoundEffectProcessor - Low - - - 699 - Mp3Importer - SoundEffectProcessor - Low - - - 703 - Mp3Importer - SoundEffectProcessor - Low - - - 707 - Mp3Importer - SoundEffectProcessor - Low - - - - - 86 - TextureImporter - TextureProcessor - - - 87 - TextureImporter - TextureProcessor - - - 88 - TextureImporter - TextureProcessor - - - 89 - TextureImporter - TextureProcessor - - - 90 - TextureImporter - TextureProcessor - - - 91 - TextureImporter - TextureProcessor - - - - - MegaStones - TextureImporter - TextureProcessor - - - - - viridianForest - TextureImporter - TextureProcessor - - - - - 283 - TextureImporter - TextureProcessor - - - 284 - TextureImporter - TextureProcessor - - - 290 - TextureImporter - TextureProcessor - - - 291 - TextureImporter - TextureProcessor - - - 292 - TextureImporter - TextureProcessor - - - 293 - TextureImporter - TextureProcessor - - - 294 - TextureImporter - TextureProcessor - - - 295 - TextureImporter - TextureProcessor - - - 300 - TextureImporter - TextureProcessor - - - 301 - TextureImporter - TextureProcessor - - - 303 - TextureImporter - TextureProcessor - - - 309 - TextureImporter - TextureProcessor - - - 310 - TextureImporter - TextureProcessor - - - 311 - TextureImporter - TextureProcessor - - - 312 - TextureImporter - TextureProcessor - - - 313 - TextureImporter - TextureProcessor - - - 314 - TextureImporter - TextureProcessor - - - 316 - TextureImporter - TextureProcessor - - - 317 - TextureImporter - TextureProcessor - - - 318 - TextureImporter - TextureProcessor - - - 319 - TextureImporter - TextureProcessor - - - 320 - TextureImporter - TextureProcessor - - - 321 - TextureImporter - TextureProcessor - - - 325 - TextureImporter - TextureProcessor - - - 326 - TextureImporter - TextureProcessor - - - 339 - TextureImporter - TextureProcessor - - - 340 - TextureImporter - TextureProcessor - - - 351 - TextureImporter - TextureProcessor - - - 352 - TextureImporter - TextureProcessor - - - 353 - TextureImporter - TextureProcessor - - - 354 - TextureImporter - TextureProcessor - - - 355 - TextureImporter - TextureProcessor - - - 356 - TextureImporter - TextureProcessor - - - 358 - TextureImporter - TextureProcessor - - - 359 - TextureImporter - TextureProcessor - - - 370 - TextureImporter - TextureProcessor - - - 377 - TextureImporter - TextureProcessor - - - 378 - TextureImporter - TextureProcessor - - - 379 - TextureImporter - TextureProcessor - - - 380 - TextureImporter - TextureProcessor - - - 381 - TextureImporter - TextureProcessor - - - 386 - TextureImporter - TextureProcessor - - - 386_attack - TextureImporter - TextureProcessor - - - 386_defense - TextureImporter - TextureProcessor - - - 386_speed - TextureImporter - TextureProcessor - - - - - 283 - TextureImporter - TextureProcessor - - - 284 - TextureImporter - TextureProcessor - - - 290 - TextureImporter - TextureProcessor - - - 291 - TextureImporter - TextureProcessor - - - 292 - TextureImporter - TextureProcessor - - - 293 - TextureImporter - TextureProcessor - - - 294 - TextureImporter - TextureProcessor - - - 295 - TextureImporter - TextureProcessor - - - 300 - TextureImporter - TextureProcessor - - - 301 - TextureImporter - TextureProcessor - - - 303 - TextureImporter - TextureProcessor - - - 309 - TextureImporter - TextureProcessor - - - 310 - TextureImporter - TextureProcessor - - - 311 - TextureImporter - TextureProcessor - - - 312 - TextureImporter - TextureProcessor - - - 313 - TextureImporter - TextureProcessor - - - 314 - TextureImporter - TextureProcessor - - - 316 - TextureImporter - TextureProcessor - - - 317 - TextureImporter - TextureProcessor - - - 318 - TextureImporter - TextureProcessor - - - 319 - TextureImporter - TextureProcessor - - - 320 - TextureImporter - TextureProcessor - - - 321 - TextureImporter - TextureProcessor - - - 325 - TextureImporter - TextureProcessor - - - 326 - TextureImporter - TextureProcessor - - - 339 - TextureImporter - TextureProcessor - - - 340 - TextureImporter - TextureProcessor - - - 351 - TextureImporter - TextureProcessor - - - 352 - TextureImporter - TextureProcessor - - - 353 - TextureImporter - TextureProcessor - - - 354 - TextureImporter - TextureProcessor - - - 355 - TextureImporter - TextureProcessor - - - 356 - TextureImporter - TextureProcessor - - - 358 - TextureImporter - TextureProcessor - - - 359 - TextureImporter - TextureProcessor - - - 370 - TextureImporter - TextureProcessor - - - 377 - TextureImporter - TextureProcessor - - - 378 - TextureImporter - TextureProcessor - - - 379 - TextureImporter - TextureProcessor - - - 380 - TextureImporter - TextureProcessor - - - 381 - TextureImporter - TextureProcessor - - - 386 - TextureImporter - TextureProcessor - - - 386_attack - TextureImporter - TextureProcessor - - - 386_defense - TextureImporter - TextureProcessor - - - 386_speed - TextureImporter - TextureProcessor - - - - - 284 - Mp3Importer - SoundEffectProcessor - Low - - - 290 - Mp3Importer - SoundEffectProcessor - Low - - - 291 - Mp3Importer - SoundEffectProcessor - Low - - - 292 - Mp3Importer - SoundEffectProcessor - Low - - - 293 - Mp3Importer - SoundEffectProcessor - Low - - - 294 - Mp3Importer - SoundEffectProcessor - Low - - - 295 - Mp3Importer - SoundEffectProcessor - Low - - - 300 - Mp3Importer - SoundEffectProcessor - Low - - - 301 - Mp3Importer - SoundEffectProcessor - Low - - - 303 - Mp3Importer - SoundEffectProcessor - Low - - - 309 - Mp3Importer - SoundEffectProcessor - Low - - - 310 - Mp3Importer - SoundEffectProcessor - Low - - - 311 - Mp3Importer - SoundEffectProcessor - Low - - - 312 - Mp3Importer - SoundEffectProcessor - Low - - - 313 - Mp3Importer - SoundEffectProcessor - Low - - - 314 - Mp3Importer - SoundEffectProcessor - Low - - - 316 - Mp3Importer - SoundEffectProcessor - Low - - - 317 - Mp3Importer - SoundEffectProcessor - Low - - - 318 - Mp3Importer - SoundEffectProcessor - Low - - - 319 - Mp3Importer - SoundEffectProcessor - Low - - - 320 - Mp3Importer - SoundEffectProcessor - Low - - - 321 - Mp3Importer - SoundEffectProcessor - Low - - - 325 - Mp3Importer - SoundEffectProcessor - Low - - - 326 - Mp3Importer - SoundEffectProcessor - Low - - - 339 - Mp3Importer - SoundEffectProcessor - Low - - - 340 - Mp3Importer - SoundEffectProcessor - Low - - - 351 - Mp3Importer - SoundEffectProcessor - Low - - - 352 - Mp3Importer - SoundEffectProcessor - Low - - - 353 - Mp3Importer - SoundEffectProcessor - Low - - - 354 - Mp3Importer - SoundEffectProcessor - Low - - - 355 - Mp3Importer - SoundEffectProcessor - Low - - - 356 - Mp3Importer - SoundEffectProcessor - Low - - - 358 - Mp3Importer - SoundEffectProcessor - Low - - - 359 - Mp3Importer - SoundEffectProcessor - Low - - - 370 - Mp3Importer - SoundEffectProcessor - Low - - - 377 - Mp3Importer - SoundEffectProcessor - Low - - - 378 - Mp3Importer - SoundEffectProcessor - Low - - - 379 - Mp3Importer - SoundEffectProcessor - Low - - - 380 - Mp3Importer - SoundEffectProcessor - Low - - - 381 - Mp3Importer - SoundEffectProcessor - Low - - - 386 - Mp3Importer - SoundEffectProcessor - Low - - - - - Absol - TextureImporter - TextureProcessor - - - - - Banette - TextureImporter - TextureProcessor - - - - - Barboach - TextureImporter - TextureProcessor - - - - - Castform - TextureImporter - TextureProcessor - - - - - Chimecho - TextureImporter - TextureProcessor - - - - - Chingling - TextureImporter - TextureProcessor - - - - - Carvanha - TextureImporter - TextureProcessor - - - Delcatty - TextureImporter - TextureProcessor - - - Deoxys - TextureImporter - TextureProcessor - - - Deoxys_attack - TextureImporter - TextureProcessor - - - Deoxys_defense - TextureImporter - TextureProcessor - - - Deoxys_speed - TextureImporter - TextureProcessor - - - Dusclops - TextureImporter - TextureProcessor - - - Duskull - TextureImporter - TextureProcessor - - - Electrike - TextureImporter - TextureProcessor - - - Exploud - TextureImporter - TextureProcessor - - - Grumpig - TextureImporter - TextureProcessor - - - Gulpin - TextureImporter - TextureProcessor - - - Illumise - TextureImporter - TextureProcessor - - - Kecleon - TextureImporter - TextureProcessor - - - Latias - TextureImporter - TextureProcessor - - - Latios - TextureImporter - TextureProcessor - - - Loudred - TextureImporter - TextureProcessor - - - Luvdisc - TextureImporter - TextureProcessor - - - Manectric - TextureImporter - TextureProcessor - - - Masquerain - TextureImporter - TextureProcessor - - - Mawile - TextureImporter - TextureProcessor - - - Minun - TextureImporter - TextureProcessor - - - Nincada - TextureImporter - TextureProcessor - - - Ninjask - TextureImporter - TextureProcessor - - - Plusle - TextureImporter - TextureProcessor - - - Regice - TextureImporter - TextureProcessor - - - Regirock - TextureImporter - TextureProcessor - - - Registeel - TextureImporter - TextureProcessor - - - Sharpedo - TextureImporter - TextureProcessor - - - Shedinja - TextureImporter - TextureProcessor - - - Shuppet - TextureImporter - TextureProcessor - - - Skitty - TextureImporter - TextureProcessor - - - Spoink - TextureImporter - TextureProcessor - - - Surskit - TextureImporter - TextureProcessor - - - Swalot - TextureImporter - TextureProcessor - - - Volbeat - TextureImporter - TextureProcessor - - - Wailmer - TextureImporter - TextureProcessor - - - Wailord - TextureImporter - TextureProcessor - - - Whiscash - TextureImporter - TextureProcessor - - - Whismur - TextureImporter - TextureProcessor - - - - - berryForest - TextureImporter - TextureProcessor - - - - - 283 - Mp3Importer - SoundEffectProcessor - Low - - - 401 - Mp3Importer - SoundEffectProcessor - Low - - - 402 - Mp3Importer - SoundEffectProcessor - Low - - - 408 - Mp3Importer - SoundEffectProcessor - Low - - - 413 - Mp3Importer - SoundEffectProcessor - Low - - - 414 - Mp3Importer - SoundEffectProcessor - Low - - - 417 - Mp3Importer - SoundEffectProcessor - Low - - - 425 - Mp3Importer - SoundEffectProcessor - Low - - - 426 - Mp3Importer - SoundEffectProcessor - Low - - - 431 - Mp3Importer - SoundEffectProcessor - Low - - - 432 - Mp3Importer - SoundEffectProcessor - Low - - - 433 - Mp3Importer - SoundEffectProcessor - Low - - - 434 - Mp3Importer - SoundEffectProcessor - Low - - - 435 - Mp3Importer - SoundEffectProcessor - Low - - - 441 - Mp3Importer - SoundEffectProcessor - Low - - - 455 - Mp3Importer - SoundEffectProcessor - Low - - - 480 - Mp3Importer - SoundEffectProcessor - Low - - - 481 - Mp3Importer - SoundEffectProcessor - Low - - - 482 - Mp3Importer - SoundEffectProcessor - Low - - - 483 - Mp3Importer - SoundEffectProcessor - Low - - - 484 - Mp3Importer - SoundEffectProcessor - Low - - - 485 - Mp3Importer - SoundEffectProcessor - Low - - - 486 - Mp3Importer - SoundEffectProcessor - Low - - - 487 - Mp3Importer - SoundEffectProcessor - Low - - - 488 - Mp3Importer - SoundEffectProcessor - Low - - - 489 - Mp3Importer - SoundEffectProcessor - Low - - - 490 - Mp3Importer - SoundEffectProcessor - Low - - - 491 - Mp3Importer - SoundEffectProcessor - Low - - - 492 - Mp3Importer - SoundEffectProcessor - Low - - - 492_sky - Mp3Importer - SoundEffectProcessor - Low - - - 493 - Mp3Importer - SoundEffectProcessor - Low - - - - - 401 - TextureImporter - TextureProcessor - - - 402 - TextureImporter - TextureProcessor - - - 412 - TextureImporter - TextureProcessor - - - 412_sandy - TextureImporter - TextureProcessor - - - 412_trash - TextureImporter - TextureProcessor - - - 413 - TextureImporter - TextureProcessor - - - 413_sandy - TextureImporter - TextureProcessor - - - 413_trash - TextureImporter - TextureProcessor - - - 414 - TextureImporter - TextureProcessor - - - 417 - TextureImporter - TextureProcessor - - - 425 - TextureImporter - TextureProcessor - - - 426 - TextureImporter - TextureProcessor - - - 431 - TextureImporter - TextureProcessor - - - 432 - TextureImporter - TextureProcessor - - - 433 - TextureImporter - TextureProcessor - - - 434 - TextureImporter - TextureProcessor - - - 435 - TextureImporter - TextureProcessor - - - 441 - TextureImporter - TextureProcessor - - - 455 - TextureImporter - TextureProcessor - - - 480 - TextureImporter - TextureProcessor - - - 481 - TextureImporter - TextureProcessor - - - 482 - TextureImporter - TextureProcessor - - - 483 - TextureImporter - TextureProcessor - - - 484 - TextureImporter - TextureProcessor - - - 485 - TextureImporter - TextureProcessor - - - 486 - TextureImporter - TextureProcessor - - - 487 - TextureImporter - TextureProcessor - - - 487_origin - TextureImporter - TextureProcessor - - - 488 - TextureImporter - TextureProcessor - - - 489 - TextureImporter - TextureProcessor - - - 490 - TextureImporter - TextureProcessor - - - 491 - TextureImporter - TextureProcessor - - - 492 - TextureImporter - TextureProcessor - - - 492_sky - TextureImporter - TextureProcessor - - - 493 - TextureImporter - TextureProcessor - - - 493_bug - TextureImporter - TextureProcessor - - - 493_dark - TextureImporter - TextureProcessor - - - 493_dragon - TextureImporter - TextureProcessor - - - 493_electric - TextureImporter - TextureProcessor - - - 493_fighting - TextureImporter - TextureProcessor - - - 493_fire - TextureImporter - TextureProcessor - - - 493_flying - TextureImporter - TextureProcessor - - - 493_ghost - TextureImporter - TextureProcessor - - - 493_grass - TextureImporter - TextureProcessor - - - 493_ground - TextureImporter - TextureProcessor - - - 493_ice - TextureImporter - TextureProcessor - - - 493_normal - TextureImporter - TextureProcessor - - - 493_poison - TextureImporter - TextureProcessor - - - 493_psychic - TextureImporter - TextureProcessor - - - 493_rock - TextureImporter - TextureProcessor - - - 493_steel - TextureImporter - TextureProcessor - - - 493_unknown - TextureImporter - TextureProcessor - - - 493_water - TextureImporter - TextureProcessor - - - - - 493_fairy - TextureImporter - TextureProcessor - - - - - 401 - TextureImporter - TextureProcessor - - - 402 - TextureImporter - TextureProcessor - - - 412 - TextureImporter - TextureProcessor - - - 412_sandy - TextureImporter - TextureProcessor - - - 412_trash - TextureImporter - TextureProcessor - - - 413 - TextureImporter - TextureProcessor - - - 413_sandy - TextureImporter - TextureProcessor - - - 413_trash - TextureImporter - TextureProcessor - - - 414 - TextureImporter - TextureProcessor - - - 417 - TextureImporter - TextureProcessor - - - 425 - TextureImporter - TextureProcessor - - - 426 - TextureImporter - TextureProcessor - - - 431 - TextureImporter - TextureProcessor - - - 432 - TextureImporter - TextureProcessor - - - 433 - TextureImporter - TextureProcessor - - - 434 - TextureImporter - TextureProcessor - - - 435 - TextureImporter - TextureProcessor - - - 441 - TextureImporter - TextureProcessor - - - 455 - TextureImporter - TextureProcessor - - - 480 - TextureImporter - TextureProcessor - - - 481 - TextureImporter - TextureProcessor - - - 482 - TextureImporter - TextureProcessor - - - 485 - TextureImporter - TextureProcessor - - - 486 - TextureImporter - TextureProcessor - - - 487 - TextureImporter - TextureProcessor - - - 487_origin - TextureImporter - TextureProcessor - - - 488 - TextureImporter - TextureProcessor - - - 489 - TextureImporter - TextureProcessor - - - 490 - TextureImporter - TextureProcessor - - - 491 - TextureImporter - TextureProcessor - - - 492 - TextureImporter - TextureProcessor - - - 492_sky - TextureImporter - TextureProcessor - - - 493 - TextureImporter - TextureProcessor - - - 493_bug - TextureImporter - TextureProcessor - - - 493_dark - TextureImporter - TextureProcessor - - - 493_dragon - TextureImporter - TextureProcessor - - - 493_electric - TextureImporter - TextureProcessor - - - 493_fairy - TextureImporter - TextureProcessor - - - 493_fighting - TextureImporter - TextureProcessor - - - 493_fire - TextureImporter - TextureProcessor - - - 493_flying - TextureImporter - TextureProcessor - - - 493_ghost - TextureImporter - TextureProcessor - - - 493_grass - TextureImporter - TextureProcessor - - - 493_ground - TextureImporter - TextureProcessor - - - 493_ice - TextureImporter - TextureProcessor - - - 493_normal - TextureImporter - TextureProcessor - - - 493_poison - TextureImporter - TextureProcessor - - - 493_psychic - TextureImporter - TextureProcessor - - - 493_rock - TextureImporter - TextureProcessor - - - 493_steel - TextureImporter - TextureProcessor - - - 493_unknown - TextureImporter - TextureProcessor - - - 493_water - TextureImporter - TextureProcessor - - - - - Azelf - TextureImporter - TextureProcessor - - - Burmy - TextureImporter - TextureProcessor - - - Burmy_sand - TextureImporter - TextureProcessor - - - Burmy_trash - TextureImporter - TextureProcessor - - - Chatot - TextureImporter - TextureProcessor - - - Cresselia - TextureImporter - TextureProcessor - - - Darkrai - TextureImporter - TextureProcessor - - - Dialga - TextureImporter - TextureProcessor - - - Drifblim - TextureImporter - TextureProcessor - - - Drifloon - TextureImporter - TextureProcessor - - - Girantina_origin - TextureImporter - TextureProcessor - - - Giratina - TextureImporter - TextureProcessor - - - Glameow - TextureImporter - TextureProcessor - - - Heatran - TextureImporter - TextureProcessor - - - Kricketot - TextureImporter - TextureProcessor - - - Kricketune - TextureImporter - TextureProcessor - - - Manaphy - TextureImporter - TextureProcessor - - - Mesprit - TextureImporter - TextureProcessor - - - Mothim - TextureImporter - TextureProcessor - - - Pachirisu - TextureImporter - TextureProcessor - - - Palkia - TextureImporter - TextureProcessor - - - Phione - TextureImporter - TextureProcessor - - - Purugly - TextureImporter - TextureProcessor - - - Regigigas - TextureImporter - TextureProcessor - - - Shaymin - TextureImporter - TextureProcessor - - - Shaymin_sky - TextureImporter - TextureProcessor - - - Skuntank - TextureImporter - TextureProcessor - - - Stunky - TextureImporter - TextureProcessor - - - Uxie - TextureImporter - TextureProcessor - - - Wormadam - TextureImporter - TextureProcessor - - - Wormadam_sand - TextureImporter - TextureProcessor - - - Wormadam_trash - TextureImporter - TextureProcessor - - - - - 494 - TextureImporter - TextureProcessor - - - 517 - TextureImporter - TextureProcessor - - - 518 - TextureImporter - TextureProcessor - - - 527 - TextureImporter - TextureProcessor - - - 528 - TextureImporter - TextureProcessor - - - 529 - TextureImporter - TextureProcessor - - - 530 - TextureImporter - TextureProcessor - - - 532 - TextureImporter - TextureProcessor - - - 533 - TextureImporter - TextureProcessor - - - 534 - TextureImporter - TextureProcessor - - - 538 - TextureImporter - TextureProcessor - - - 539 - TextureImporter - TextureProcessor - - - 543 - TextureImporter - TextureProcessor - - - 544 - TextureImporter - TextureProcessor - - - 545 - TextureImporter - TextureProcessor - - - 548 - TextureImporter - TextureProcessor - - - 549 - TextureImporter - TextureProcessor - - - 550 - TextureImporter - TextureProcessor - - - 554 - TextureImporter - TextureProcessor - - - 555 - TextureImporter - TextureProcessor - - - 559 - TextureImporter - TextureProcessor - - - 560 - TextureImporter - TextureProcessor - - - 568 - TextureImporter - TextureProcessor - - - 569 - TextureImporter - TextureProcessor - - - 572 - TextureImporter - TextureProcessor - - - 573 - TextureImporter - TextureProcessor - - - 574 - TextureImporter - TextureProcessor - - - 575 - TextureImporter - TextureProcessor - - - 576 - TextureImporter - TextureProcessor - - - 577 - TextureImporter - TextureProcessor - - - 578 - TextureImporter - TextureProcessor - - - 579 - TextureImporter - TextureProcessor - - - 587 - TextureImporter - TextureProcessor - - - 588 - TextureImporter - TextureProcessor - - - 589 - TextureImporter - TextureProcessor - - - 594 - TextureImporter - TextureProcessor - - - 615 - TextureImporter - TextureProcessor - - - 616 - TextureImporter - TextureProcessor - - - 617 - TextureImporter - TextureProcessor - - - 618 - TextureImporter - TextureProcessor - - - 619 - TextureImporter - TextureProcessor - - - 620 - TextureImporter - TextureProcessor - - - 624 - TextureImporter - TextureProcessor - - - 625 - TextureImporter - TextureProcessor - - - 632 - TextureImporter - TextureProcessor - - - 638 - TextureImporter - TextureProcessor - - - 639 - TextureImporter - TextureProcessor - - - 640 - TextureImporter - TextureProcessor - - - 641 - TextureImporter - TextureProcessor - - - 642 - TextureImporter - TextureProcessor - - - 645 - TextureImporter - TextureProcessor - - - 647 - TextureImporter - TextureProcessor - - - 648 - TextureImporter - TextureProcessor - - - 649 - TextureImporter - TextureProcessor - - - - - 494 - TextureImporter - TextureProcessor - - - 517 - TextureImporter - TextureProcessor - - - 518 - TextureImporter - TextureProcessor - - - 527 - TextureImporter - TextureProcessor - - - 528 - TextureImporter - TextureProcessor - - - 529 - TextureImporter - TextureProcessor - - - 530 - TextureImporter - TextureProcessor - - - 532 - TextureImporter - TextureProcessor - - - 533 - TextureImporter - TextureProcessor - - - 534 - TextureImporter - TextureProcessor - - - 538 - TextureImporter - TextureProcessor - - - 539 - TextureImporter - TextureProcessor - - - 543 - TextureImporter - TextureProcessor - - - 544 - TextureImporter - TextureProcessor - - - 545 - TextureImporter - TextureProcessor - - - 548 - TextureImporter - TextureProcessor - - - 549 - TextureImporter - TextureProcessor - - - 550 - TextureImporter - TextureProcessor - - - 554 - TextureImporter - TextureProcessor - - - 555 - TextureImporter - TextureProcessor - - - 559 - TextureImporter - TextureProcessor - - - 560 - TextureImporter - TextureProcessor - - - 568 - TextureImporter - TextureProcessor - - - 569 - TextureImporter - TextureProcessor - - - 572 - TextureImporter - TextureProcessor - - - 573 - TextureImporter - TextureProcessor - - - 574 - TextureImporter - TextureProcessor - - - 575 - TextureImporter - TextureProcessor - - - 576 - TextureImporter - TextureProcessor - - - 577 - TextureImporter - TextureProcessor - - - 578 - TextureImporter - TextureProcessor - - - 579 - TextureImporter - TextureProcessor - - - 587 - TextureImporter - TextureProcessor - - - 588 - TextureImporter - TextureProcessor - - - 589 - TextureImporter - TextureProcessor - - - 594 - TextureImporter - TextureProcessor - - - 615 - TextureImporter - TextureProcessor - - - 616 - TextureImporter - TextureProcessor - - - 617 - TextureImporter - TextureProcessor - - - 618 - TextureImporter - TextureProcessor - - - 619 - TextureImporter - TextureProcessor - - - 620 - TextureImporter - TextureProcessor - - - 624 - TextureImporter - TextureProcessor - - - 625 - TextureImporter - TextureProcessor - - - 632 - TextureImporter - TextureProcessor - - - 638 - TextureImporter - TextureProcessor - - - 639 - TextureImporter - TextureProcessor - - - 640 - TextureImporter - TextureProcessor - - - 641 - TextureImporter - TextureProcessor - - - 642 - TextureImporter - TextureProcessor - - - 645 - TextureImporter - TextureProcessor - - - 647 - TextureImporter - TextureProcessor - - - 648 - TextureImporter - TextureProcessor - - - 649 - TextureImporter - TextureProcessor - - - - - Accelgor - TextureImporter - TextureProcessor - - - Alomomola - TextureImporter - TextureProcessor - - - Basculin - TextureImporter - TextureProcessor - - - Bisharp - TextureImporter - TextureProcessor - - - Carnivine - TextureImporter - TextureProcessor - - - Cinccino - TextureImporter - TextureProcessor - - - Cobalion - TextureImporter - TextureProcessor - - - Conkeldurr - TextureImporter - TextureProcessor - - - Darmanitan - TextureImporter - TextureProcessor - - - Darmanitan_zen - TextureImporter - TextureProcessor - - - Darumaka - TextureImporter - TextureProcessor - - - Drilbur - TextureImporter - TextureProcessor - - - Duosion - TextureImporter - TextureProcessor - - - Durant - TextureImporter - TextureProcessor - - - Emolga - TextureImporter - TextureProcessor - - - Escavalier - TextureImporter - TextureProcessor - - - Excadrill - TextureImporter - TextureProcessor - - - Garbodor - TextureImporter - TextureProcessor - - - Genesect - TextureImporter - TextureProcessor - - - Genesect_burn - TextureImporter - TextureProcessor - - - Genesect_chill - TextureImporter - TextureProcessor - - - Genesect_douse - TextureImporter - TextureProcessor - - - genesect_shock - TextureImporter - TextureProcessor - - - Gothita - TextureImporter - TextureProcessor - - - Gothitelle - TextureImporter - TextureProcessor - - - Gothorita - TextureImporter - TextureProcessor - - - Gurdurr - TextureImporter - TextureProcessor - - - Karrablast - TextureImporter - TextureProcessor - - - Keldeo - TextureImporter - TextureProcessor - - - Keldeo_resolute - TextureImporter - TextureProcessor - - - Kyurem - TextureImporter - TextureProcessor - - - Kyurem_black - TextureImporter - TextureProcessor - - - Kyurem_white - TextureImporter - TextureProcessor - - - Landorus_therian - TextureImporter - TextureProcessor - - - Landorus - TextureImporter - TextureProcessor - - - Lilligant - TextureImporter - TextureProcessor - - - Meloetta - TextureImporter - TextureProcessor - - - Meloetta_pirouette - TextureImporter - TextureProcessor - - - Mienfoo - TextureImporter - TextureProcessor - - - Mienshao - TextureImporter - TextureProcessor - - - Minccino - TextureImporter - TextureProcessor - - - Munna - TextureImporter - TextureProcessor - - - Musharna - TextureImporter - TextureProcessor - - - Pawniard - TextureImporter - TextureProcessor - - - Petilil - TextureImporter - TextureProcessor - - - Reshiram - TextureImporter - TextureProcessor - - - Reuniclus - TextureImporter - TextureProcessor - - - Sawk - TextureImporter - TextureProcessor - - - Scolipede - TextureImporter - TextureProcessor - - - Scrafty - TextureImporter - TextureProcessor - - - Scraggy - TextureImporter - TextureProcessor - - - Shelmet - TextureImporter - TextureProcessor - - - Solosis - TextureImporter - TextureProcessor - - - Stunfisk - TextureImporter - TextureProcessor - - - Swoobat - TextureImporter - TextureProcessor - - - Terrakion - TextureImporter - TextureProcessor - - - Throh - TextureImporter - TextureProcessor - - - Thundurus - TextureImporter - TextureProcessor - - - Thundurus_therian - TextureImporter - TextureProcessor - - - Timburr - TextureImporter - TextureProcessor - - - Tornadus - TextureImporter - TextureProcessor - - - Tornadus_therian - TextureImporter - TextureProcessor - - - Trubbish - TextureImporter - TextureProcessor - - - Venipede - TextureImporter - TextureProcessor - - - Victini - TextureImporter - TextureProcessor - - - Virizion - TextureImporter - TextureProcessor - - - Whirlipede - TextureImporter - TextureProcessor - - - Woobat - TextureImporter - TextureProcessor - - - Zekrom - TextureImporter - TextureProcessor - - - - - 494 - Mp3Importer - SoundEffectProcessor - Low - - - 517 - Mp3Importer - SoundEffectProcessor - Low - - - 518 - Mp3Importer - SoundEffectProcessor - Low - - - 527 - Mp3Importer - SoundEffectProcessor - Low - - - 528 - Mp3Importer - SoundEffectProcessor - Low - - - 529 - Mp3Importer - SoundEffectProcessor - Low - - - 530 - Mp3Importer - SoundEffectProcessor - Low - - - 532 - Mp3Importer - SoundEffectProcessor - Low - - - 533 - Mp3Importer - SoundEffectProcessor - Low - - - 534 - Mp3Importer - SoundEffectProcessor - Low - - - 538 - Mp3Importer - SoundEffectProcessor - Low - - - 539 - Mp3Importer - SoundEffectProcessor - Low - - - 543 - Mp3Importer - SoundEffectProcessor - Low - - - 544 - Mp3Importer - SoundEffectProcessor - Low - - - 545 - Mp3Importer - SoundEffectProcessor - Low - - - 548 - Mp3Importer - SoundEffectProcessor - Low - - - 549 - Mp3Importer - SoundEffectProcessor - Low - - - 550 - Mp3Importer - SoundEffectProcessor - Low - - - 554 - Mp3Importer - SoundEffectProcessor - Low - - - 555 - Mp3Importer - SoundEffectProcessor - Low - - - 559 - Mp3Importer - SoundEffectProcessor - Low - - - 560 - Mp3Importer - SoundEffectProcessor - Low - - - 568 - Mp3Importer - SoundEffectProcessor - Low - - - 569 - Mp3Importer - SoundEffectProcessor - Low - - - 572 - Mp3Importer - SoundEffectProcessor - Low - - - 573 - Mp3Importer - SoundEffectProcessor - Low - - - 574 - Mp3Importer - SoundEffectProcessor - Low - - - 575 - Mp3Importer - SoundEffectProcessor - Low - - - 576 - Mp3Importer - SoundEffectProcessor - Low - - - 577 - Mp3Importer - SoundEffectProcessor - Low - - - 578 - Mp3Importer - SoundEffectProcessor - Low - - - 579 - Mp3Importer - SoundEffectProcessor - Low - - - 587 - Mp3Importer - SoundEffectProcessor - Low - - - 588 - Mp3Importer - SoundEffectProcessor - Low - - - 589 - Mp3Importer - SoundEffectProcessor - Low - - - 594 - Mp3Importer - SoundEffectProcessor - Low - - - 615 - Mp3Importer - SoundEffectProcessor - Low - - - 616 - Mp3Importer - SoundEffectProcessor - Low - - - 617 - Mp3Importer - SoundEffectProcessor - Low - - - 618 - Mp3Importer - SoundEffectProcessor - Low - - - 619 - Mp3Importer - SoundEffectProcessor - Low - - - 620 - Mp3Importer - SoundEffectProcessor - Low - - - 622 - Mp3Importer - SoundEffectProcessor - Low - - - 625 - Mp3Importer - SoundEffectProcessor - Low - - - 631 - Mp3Importer - SoundEffectProcessor - Low - - - 632 - Mp3Importer - SoundEffectProcessor - Low - - - 638 - Mp3Importer - SoundEffectProcessor - Low - - - 639 - Mp3Importer - SoundEffectProcessor - Low - - - 640 - Mp3Importer - SoundEffectProcessor - Low - - - 641 - Mp3Importer - SoundEffectProcessor - Low - - - 642 - Mp3Importer - SoundEffectProcessor - Low - - - 643 - Mp3Importer - SoundEffectProcessor - Low - - - 644 - Mp3Importer - SoundEffectProcessor - Low - - - 645 - Mp3Importer - SoundEffectProcessor - Low - - - 646 - Mp3Importer - SoundEffectProcessor - Low - - - 647 - Mp3Importer - SoundEffectProcessor - Low - - - 648 - Mp3Importer - SoundEffectProcessor - Low - - - 649 - Mp3Importer - SoundEffectProcessor - Low - - - - - Sparkle - TextureImporter - TextureProcessor - - - - - Arceus_bug - TextureImporter - TextureProcessor - - - Arceus_dark - TextureImporter - TextureProcessor - - - Arceus_dragon - TextureImporter - TextureProcessor - - - Arceus_electric - TextureImporter - TextureProcessor - - - Arceus_fairy - TextureImporter - TextureProcessor - - - Arceus_fighting - TextureImporter - TextureProcessor - - - Arceus_fire - TextureImporter - TextureProcessor - - - Arceus_flying - TextureImporter - TextureProcessor - - - Arceus_ghost - TextureImporter - TextureProcessor - - - Arceus_grass - TextureImporter - TextureProcessor - - - Arceus_ground - TextureImporter - TextureProcessor - - - Arceus_ice - TextureImporter - TextureProcessor - - - Arceus_poison - TextureImporter - TextureProcessor - - - Arceus_psychic - TextureImporter - TextureProcessor - - - Arceus_rock - TextureImporter - TextureProcessor - - - Arceus_steel - TextureImporter - TextureProcessor - - - Arceus_water - TextureImporter - TextureProcessor - - - - - Arceus - TextureImporter - TextureProcessor - - - - - Plates - TextureImporter - TextureProcessor - - - - - 483 - TextureImporter - TextureProcessor - - - 484 - TextureImporter - TextureProcessor - - - - - 641_therian - TextureImporter - TextureProcessor - - - 642_therian - TextureImporter - TextureProcessor - - - 645_therian - TextureImporter - TextureProcessor - - - - - 641_therian - TextureImporter - TextureProcessor - - - 642_therian - TextureImporter - TextureProcessor - - - 645_therian - TextureImporter - TextureProcessor - - - - - Pichu_spiky-eared - TextureImporter - TextureProcessor - - - - - Basculin_blue - TextureImporter - TextureProcessor - - - - - 550_blue - TextureImporter - TextureProcessor - - - - - 550_blue - TextureImporter - TextureProcessor - - - - - Dialga_primal - TextureImporter - TextureProcessor - - - - - 483_primal - TextureImporter - TextureProcessor - - - - - 483_primal - TextureImporter - TextureProcessor - - - - - kolben - TextureImporter - TextureProcessor - - - Aaron - TextureImporter - TextureProcessor - - - daniel - TextureImporter - TextureProcessor - - - daziman - TextureImporter - TextureProcessor - - - Enethil - TextureImporter - TextureProcessor - - - Fanta - TextureImporter - TextureProcessor - - - Haydos - TextureImporter - TextureProcessor - - - HCSwagmar - TextureImporter - TextureProcessor - - - Malc - TextureImporter - TextureProcessor - - - tornado - TextureImporter - TextureProcessor - - - Anime - TextureImporter - TextureProcessor - - - benwork - TextureImporter - TextureProcessor - - - Blue - TextureImporter - TextureProcessor - - - BSOD - TextureImporter - TextureProcessor - - - Crystal - TextureImporter - TextureProcessor - - - Emerald - TextureImporter - TextureProcessor - - - GameGrumps - TextureImporter - TextureProcessor - - - Gold - TextureImporter - TextureProcessor - - - inception - TextureImporter - TextureProcessor - - - Kolben - TextureImporter - TextureProcessor - - - MarioKart8 - TextureImporter - TextureProcessor - - - Nyan - TextureImporter - TextureProcessor - - - office - TextureImporter - TextureProcessor - - - P3d - TextureImporter - TextureProcessor - - - Pong - TextureImporter - TextureProcessor - - - PSwebCode - TextureImporter - TextureProcessor - - - Red - TextureImporter - TextureProcessor - - - RickRolled - TextureImporter - TextureProcessor - - - RickRolled2 - TextureImporter - TextureProcessor - - - Ruby - TextureImporter - TextureProcessor - - - Sapphire - TextureImporter - TextureProcessor - - - Silver - TextureImporter - TextureProcessor - - - webcode - TextureImporter - TextureProcessor - - - website - TextureImporter - TextureProcessor - - - webwork - TextureImporter - TextureProcessor - - - work - TextureImporter - TextureProcessor - - - Yellow - TextureImporter - TextureProcessor - - - - - P3DBuilding - TextureImporter - TextureProcessor - - - - - Braille - TextureImporter - FontTextureProcessor - - - - - Interface - TextureImporter - TextureProcessor - - - - - General - TextureImporter - TextureProcessor - - - - - BackdropShader - EffectImporter - EffectProcessor - - - - - Water - TextureImporter - TextureProcessor - - - - - Grass - TextureImporter - TextureProcessor - - - - - 3D - TextureImporter - TextureProcessor - - - Pokemon_Small - TextureImporter - TextureProcessor - - - - - 631 - TextureImporter - TextureProcessor - - - 643 - TextureImporter - TextureProcessor - - - 644 - TextureImporter - TextureProcessor - - - 646 - TextureImporter - TextureProcessor - - - - - 631 - TextureImporter - TextureProcessor - - - 643 - TextureImporter - TextureProcessor - - - 644 - TextureImporter - TextureProcessor - - - 646 - TextureImporter - TextureProcessor - - - - - bump - Mp3Importer - SoundEffectProcessor - - - select - Mp3Importer - SoundEffectProcessor - - - - - Icons - TextureImporter - TextureProcessor - - - - - 721 - TextureImporter - TextureProcessor - - - - - 721 - TextureImporter - TextureProcessor - - - - - Volcanion - TextureImporter - TextureProcessor - - - - - cinnabar - Mp3Importer - SongProcessor - Low - - - pallet - Mp3Importer - SongProcessor - Low - - - - - 721 - Mp3Importer - SoundEffectProcessor - Low - - - - - Blaine - TextureImporter - TextureProcessor - - - Daisy - TextureImporter - TextureProcessor - - - RedMom - TextureImporter - TextureProcessor - - - - - DiglettCave - TextureImporter - TextureProcessor - - - - - NES - TextureImporter - TextureProcessor - - - - - earth - TextureImporter - TextureProcessor - - - - - shooting star - TextureImporter - TextureProcessor - - - - - 422 - TextureImporter - TextureProcessor - - - - - 592 - TextureImporter - TextureProcessor - - - - - 422 - TextureImporter - TextureProcessor - - - - - 592 - TextureImporter - TextureProcessor - - - - - \ No newline at end of file diff --git a/2.5DHero/2.5DHeroContent/Content.mgcb b/2.5DHero/2.5DHeroContent/Content.mgcb index 916b3b40d..ddf77a00d 100644 --- a/2.5DHero/2.5DHeroContent/Content.mgcb +++ b/2.5DHero/2.5DHeroContent/Content.mgcb @@ -10327,30 +10327,6 @@ /processorParam:TextureFormat=Color /build:Textures/Battle/Fighting/forcepalmparticle.png -#begin GUI/Logos/KolbenBrand.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Logos/KolbenBrand.png - -#begin GUI/Logos/KolbenText.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Logos/KolbenText.png - #begin Textures/Battle/StatChange/Heal.png /importer:TextureImporter /processor:TextureProcessor @@ -38586,3 +38562,15 @@ /processorParam:TextureFormat=Color /build:Fonts/BMP/chatFont.png +#begin GUI/Logos/MonoGame.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:GUI/Logos/MonoGame.png + diff --git a/2.5DHero/2.5DHeroContent/Content_Full.mgcb b/2.5DHero/2.5DHeroContent/Content_Full.mgcb deleted file mode 100644 index eca25e2d9..000000000 --- a/2.5DHero/2.5DHeroContent/Content_Full.mgcb +++ /dev/null @@ -1,38607 +0,0 @@ - -#----------------------------- Global Properties ----------------------------# - -/outputDir:bin -/intermediateDir:obj -/platform:DesktopGL -/config: -/profile:Reach -/compress:False - -#-------------------------------- References --------------------------------# - - -#---------------------------------- Content ---------------------------------# - -#begin Fonts/BMP/miniFont.spritefont -/importer:FontDescriptionImporter -/processor:FontDescriptionProcessor -/processorParam:TextureFormat=Compressed -/build:Fonts/BMP/miniFont.spritefont - -#begin Songs/intro/barktown.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/barktown.mp3 - -#begin Songs/intro/burnedtower.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/burnedtower.mp3 - -#begin Songs/intro/cherrygrove.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/cherrygrove.mp3 - -#begin Songs/intro/elmslab.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/elmslab.mp3 - -#begin Songs/intro/goldenrod.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/goldenrod.mp3 - -#begin Songs/intro/lavender.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/lavender.mp3 - -#begin Songs/intro/mart.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/mart.mp3 - -#begin Songs/intro/mary_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/mary_encounter.mp3 - -#begin Songs/intro/oak_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/oak_encounter.mp3 - -#begin Songs/intro/ride.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/ride.mp3 - -#begin Songs/intro/RouteMusic1.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/RouteMusic1.mp3 - -#begin Songs/intro/RouteMusic2.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/RouteMusic2.mp3 - -#begin Songs/intro/RouteMusic3.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/RouteMusic3.mp3 - -#begin Songs/intro/RouteMusic4.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/RouteMusic4.mp3 - -#begin Songs/intro/RouteMusic5.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/RouteMusic5.mp3 - -#begin Songs/intro/RouteMusic6.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/RouteMusic6.mp3 - -#begin Songs/intro/show_me_around.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/show_me_around.mp3 - -#begin Songs/intro/trainer_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/trainer_encounter.mp3 - -#begin Songs/intro/violet.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/violet.mp3 - -#begin Textures/indigo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/indigo.png - -#begin Textures/NPC/Bruno.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Bruno.png - -#begin Textures/NPC/Karen.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Karen.png - -#begin Textures/NPC/Koga.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Koga.png - -#begin Textures/NPC/Will.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Will.png - -#begin Textures/portraits.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/portraits.png - -#begin Textures/Weather/bubble.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Weather/bubble.png - -#begin Textures/Weather/rain.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Weather/rain.png - -#begin Textures/Weather/snow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Weather/snow.png - -#begin Textures/Village.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Village.png - -#begin SkyDomeResource/Clouds.jpg -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/Clouds.jpg - -#begin Textures/Routes.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Routes.png - -#begin GUI/Overworld/Sign.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Overworld/Sign.png - -#begin Songs/barktown.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/barktown.mp3 - -#begin Textures/BarkTown.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/BarkTown.png - -#begin Textures/House.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/House.png - -#begin SkyDomeResource/Dark.jpg -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/Dark.jpg - -#begin GUI/Overworld/TextBox.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Overworld/TextBox.png - -#begin GUI/Overworld/ChooseBox.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Overworld/ChooseBox.png - -#begin Textures/Cherrygrove.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Cherrygrove.png - -#begin SkyDomeResource/SunRise.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/SunRise.png - -#begin SkyDomeResource/AuroraBoralis.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/AuroraBoralis.png - -#begin SkyDomeResource/Cave.jpg -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/Cave.jpg - -#begin Items/ItemSheet.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Items/ItemSheet.png - -#begin GUI/Menus/Menu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Menus/Menu.png - -#begin GUI/PokemonMenu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/PokemonMenu.png - -#begin GUI/Menus/BagPack.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Menus/BagPack.png - -#begin GUI/Menus/Types.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Menus/Types.png - -#begin Textures/Berries.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Berries.png - -#begin Textures/NPC/0.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/0.png - -#begin Textures/NPC/28.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/28.png - -#begin Textures/NPC/1.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/1.png - -#begin Textures/NPC/14.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/14.png - -#begin Textures/NPC/49.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/49.png - -#begin Textures/Battle/Cloud.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Cloud.png - -#begin SkyDomeResource/SunSet.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/SunSet.png - -#begin Textures/Center.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Center.png - -#begin GUI/Intro.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Intro.png - -#begin GUI/Overworld/Particles.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Overworld/Particles.png - -#begin Textures/Lab.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Lab.png - -#begin Songs/title.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/title.mp3 - -#begin Songs/cherrygrove.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/cherrygrove.mp3 - -#begin Songs/RouteMusic0.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic0.mp3 - -#begin Songs/RouteMusic1.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic1.mp3 - -#begin Textures/NPC/61.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/61.png - -#begin Songs/center.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/center.mp3 - -#begin Textures/NPC/12.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/12.png - -#begin Textures/NPC/Pokeball.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Pokeball.png - -#begin Textures/NPC/5.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/5.png - -#begin Textures/NPC/62.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/62.png - -#begin Textures/violet.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/violet.png - -#begin Textures/NPC/63.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/63.png - -#begin Songs/violet.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/violet.mp3 - -#begin Textures/NPC/2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/2.png - -#begin GUI/Logos/P3D.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Logos/P3D.png - -#begin Textures/NPC/3.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/3.png - -#begin Textures/NPC/4.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/4.png - -#begin GUI/Map/johto_map.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Map/johto_map.png - -#begin GUI/Map/map_objects.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Map/map_objects.png - -#begin Textures/NPC/Blue.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Blue.png - -#begin Textures/NPC/Red.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Red.png - -#begin Textures/Mart.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Mart.png - -#begin SkyDomeResource/Underwater.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/Underwater.png - -#begin Textures/Lavender.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Lavender.png - -#begin Songs/lavender.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/lavender.mp3 - -#begin Textures/NPC/slender.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/slender.png - -#begin Textures/NPC/6.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/6.png - -#begin GUI/Overworld/flash_overlay.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Overworld/flash_overlay.png - -#begin Textures/House2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/House2.png - -#begin Textures/NPC/7.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/7.png - -#begin Fonts/BMP/InGame.bmp -/importer:TextureImporter -/processor:FontTextureProcessor -/processorParam:FirstCharacter= -/processorParam:PremultiplyAlpha=True -/processorParam:TextureFormat=Color -/build:Fonts/BMP/InGame.bmp - -#begin Fonts/BMP/chatFont.bmp -/importer:TextureImporter -/processor:FontTextureProcessor -/processorParam:FirstCharacter= -/processorParam:PremultiplyAlpha=True -/processorParam:TextureFormat=Color -/build:Fonts/BMP/chatFont.bmp - -#begin Fonts/BMP/mainFont.bmp -/importer:TextureImporter -/processor:FontTextureProcessor -/processorParam:FirstCharacter= -/processorParam:PremultiplyAlpha=True -/processorParam:TextureFormat=Color -/build:Fonts/BMP/mainFont.bmp - -#begin Textures/NPC/Hilbert.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Hilbert.png - -#begin Textures/NPC/8.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/8.png - -#begin Textures/NPC/Hilda.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Hilda.png - -#begin GUI/Evolution/EvolutionSpark.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Evolution/EvolutionSpark.png - -#begin GUI/Evolution/Light.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Evolution/Light.png - -#begin Textures/Azalea.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Azalea.png - -#begin Textures/Apricorn.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Apricorn.png - -#begin Textures/House3.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/House3.png - -#begin Textures/NPC/Kurt.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Kurt.png - -#begin Textures/Battle/Fire/Fire.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Fire/Fire.png - -#begin Textures/Battle/Fire/Hand.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Fire/Hand.png - -#begin Textures/Battle/Physical/Tackle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Physical/Tackle.png - -#begin Textures/Battle/Physical/Particle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Physical/Particle.png - -#begin Textures/Battle/Other/RedCircle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Other/RedCircle.png - -#begin Textures/Battle/Other/YellowCloud.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Other/YellowCloud.png - -#begin Textures/Battle/Fire/EmberBall.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Fire/EmberBall.png - -#begin Textures/Weather/rain2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Weather/rain2.png - -#begin Textures/Weather/rain3.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Weather/rain3.png - -#begin Textures/Weather/snow2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Weather/snow2.png - -#begin Textures/NPC/GoldRetro.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/GoldRetro.png - -#begin Textures/Battle/StatChange/statDown.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/StatChange/statDown.png - -#begin Textures/Battle/StatChange/statUp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/StatChange/statUp.png - -#begin Songs/johto_wild.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_wild.mp3 - -#begin Textures/NPC/Ethan.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Ethan.png - -#begin Songs/johto_wild_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_wild_intro.mp3 - -#begin Textures/NPC/oak.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/oak.png - -#begin Textures/NPC/oldhatman.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/oldhatman.png - -#begin Textures/Gym.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Gym.png - -#begin Songs/gym.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/gym.mp3 - -#begin Songs/dark_cave.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/dark_cave.mp3 - -#begin Songs/show_me_around.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/show_me_around.mp3 - -#begin Sounds/pokemon_heal.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/pokemon_heal.mp3 - -#begin Sounds/item_found.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/item_found.mp3 - -#begin Textures/NPC/Sudowoodo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Sudowoodo.png - -#begin Textures/WoodTower.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/WoodTower.png - -#begin Textures/NPC/Elder.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Elder.png - -#begin Textures/NPC/OldLady.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/OldLady.png - -#begin Textures/NPC/PinkShirtGirl.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/PinkShirtGirl.png - -#begin Textures/NPC/Sage.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Sage.png - -#begin Textures/NPC/bugcatcher.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/bugcatcher.png - -#begin Songs/sprout_tower.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/sprout_tower.mp3 - -#begin Songs/johto_trainer.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_trainer.mp3 - -#begin Fonts/BMP/Unown.bmp -/importer:TextureImporter -/processor:FontTextureProcessor -/processorParam:FirstCharacter= -/processorParam:PremultiplyAlpha=True -/processorParam:TextureFormat=Color -/build:Fonts/BMP/Unown.bmp - -#begin Songs/trainer_defeat.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/trainer_defeat.mp3 - -#begin Textures/NPC/Rattata.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Rattata.png - -#begin Textures/emoticons.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/emoticons.png - -#begin Songs/johto_rival.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_rival.mp3 - -#begin Songs/johto_rivalintro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_rivalintro.mp3 - -#begin Songs/johto_rival_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_rival_encounter.mp3 - -#begin Songs/trainer_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/trainer_encounter.mp3 - -#begin Sounds/Cries/1.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/1.mp3 - -#begin Sounds/Cries/2.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/2.mp3 - -#begin Sounds/Cries/3.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/3.mp3 - -#begin Sounds/Cries/4.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/4.mp3 - -#begin Sounds/Cries/5.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/5.mp3 - -#begin Sounds/Cries/6.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/6.mp3 - -#begin Sounds/Cries/7.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/7.mp3 - -#begin Sounds/Cries/8.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/8.mp3 - -#begin Sounds/Cries/9.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/9.mp3 - -#begin Sounds/Cries/10.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/10.mp3 - -#begin Sounds/Cries/11.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/11.mp3 - -#begin Sounds/Cries/12.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/12.mp3 - -#begin Sounds/Cries/13.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/13.mp3 - -#begin Sounds/Cries/14.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/14.mp3 - -#begin Sounds/Cries/15.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/15.mp3 - -#begin Sounds/Cries/16.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/16.mp3 - -#begin Sounds/Cries/17.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/17.mp3 - -#begin Sounds/Cries/18.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/18.mp3 - -#begin Sounds/Cries/19.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/19.mp3 - -#begin Sounds/Cries/20.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/20.mp3 - -#begin Sounds/Cries/21.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/21.mp3 - -#begin Sounds/Cries/22.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/22.mp3 - -#begin Sounds/Cries/23.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/23.mp3 - -#begin Sounds/Cries/24.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/24.mp3 - -#begin Sounds/Cries/25.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/25.mp3 - -#begin Sounds/Cries/26.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/26.mp3 - -#begin Sounds/Cries/27.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/27.mp3 - -#begin Sounds/Cries/28.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/28.mp3 - -#begin Sounds/Cries/29.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/29.mp3 - -#begin Sounds/Cries/30.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/30.mp3 - -#begin Sounds/Cries/31.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/31.mp3 - -#begin Sounds/Cries/32.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/32.mp3 - -#begin Sounds/Cries/33.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/33.mp3 - -#begin Sounds/Cries/34.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/34.mp3 - -#begin Sounds/Cries/35.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/35.mp3 - -#begin Sounds/Cries/36.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/36.mp3 - -#begin Sounds/Cries/37.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/37.mp3 - -#begin Sounds/Cries/38.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/38.mp3 - -#begin Sounds/Cries/39.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/39.mp3 - -#begin Sounds/Cries/40.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/40.mp3 - -#begin Sounds/Cries/41.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/41.mp3 - -#begin Sounds/Cries/42.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/42.mp3 - -#begin Sounds/Cries/43.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/43.mp3 - -#begin Sounds/Cries/44.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/44.mp3 - -#begin Sounds/Cries/45.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/45.mp3 - -#begin Sounds/Cries/46.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/46.mp3 - -#begin Sounds/Cries/47.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/47.mp3 - -#begin Sounds/Cries/48.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/48.mp3 - -#begin Sounds/Cries/49.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/49.mp3 - -#begin Sounds/Cries/50.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/50.mp3 - -#begin Sounds/Cries/51.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/51.mp3 - -#begin Sounds/Cries/52.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/52.mp3 - -#begin Sounds/Cries/53.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/53.mp3 - -#begin Sounds/Cries/54.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/54.mp3 - -#begin Sounds/Cries/55.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/55.mp3 - -#begin Sounds/Cries/69.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/69.mp3 - -#begin Sounds/Cries/163.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/163.mp3 - -#begin Sounds/Cries/187.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/187.mp3 - -#begin Songs/wild_defeat.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/wild_defeat.mp3 - -#begin Songs/johto_trainer_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_trainer_intro.mp3 - -#begin Textures/NPC/9.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/9.png - -#begin Textures/NPC/Falkner.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Falkner.png - -#begin Songs/johto_leader.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_leader.mp3 - -#begin Songs/johto_leader_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_leader_intro.mp3 - -#begin Songs/leader_defeat.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/leader_defeat.mp3 - -#begin GUI/Badges.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Badges.png - -#begin Textures/NPC/10.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/10.png - -#begin Sounds/Cries/100.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/100.mp3 - -#begin Sounds/Cries/101.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/101.mp3 - -#begin Sounds/Cries/102.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/102.mp3 - -#begin Sounds/Cries/103.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/103.mp3 - -#begin Sounds/Cries/104.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/104.mp3 - -#begin Sounds/Cries/105.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/105.mp3 - -#begin Sounds/Cries/106.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/106.mp3 - -#begin Sounds/Cries/107.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/107.mp3 - -#begin Sounds/Cries/108.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/108.mp3 - -#begin Sounds/Cries/109.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/109.mp3 - -#begin Sounds/Cries/110.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/110.mp3 - -#begin Sounds/Cries/111.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/111.mp3 - -#begin Sounds/Cries/112.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/112.mp3 - -#begin Sounds/Cries/113.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/113.mp3 - -#begin Sounds/Cries/114.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/114.mp3 - -#begin Sounds/Cries/115.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/115.mp3 - -#begin Sounds/Cries/116.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/116.mp3 - -#begin Sounds/Cries/117.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/117.mp3 - -#begin Sounds/Cries/118.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/118.mp3 - -#begin Sounds/Cries/119.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/119.mp3 - -#begin Sounds/Cries/120.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/120.mp3 - -#begin Sounds/Cries/121.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/121.mp3 - -#begin Sounds/Cries/122.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/122.mp3 - -#begin Sounds/Cries/123.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/123.mp3 - -#begin Sounds/Cries/124.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/124.mp3 - -#begin Sounds/Cries/125.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/125.mp3 - -#begin Sounds/Cries/126.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/126.mp3 - -#begin Sounds/Cries/127.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/127.mp3 - -#begin Sounds/Cries/128.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/128.mp3 - -#begin Sounds/Cries/129.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/129.mp3 - -#begin Sounds/Cries/130.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/130.mp3 - -#begin Sounds/Cries/131.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/131.mp3 - -#begin Sounds/Cries/132.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/132.mp3 - -#begin Sounds/Cries/133.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/133.mp3 - -#begin Sounds/Cries/134.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/134.mp3 - -#begin Sounds/Cries/135.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/135.mp3 - -#begin Sounds/Cries/136.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/136.mp3 - -#begin Sounds/Cries/137.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/137.mp3 - -#begin Sounds/Cries/138.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/138.mp3 - -#begin Sounds/Cries/139.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/139.mp3 - -#begin Sounds/Cries/140.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/140.mp3 - -#begin Sounds/Cries/141.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/141.mp3 - -#begin Sounds/Cries/142.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/142.mp3 - -#begin Sounds/Cries/143.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/143.mp3 - -#begin Sounds/Cries/144.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/144.mp3 - -#begin Sounds/Cries/145.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/145.mp3 - -#begin Sounds/Cries/146.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/146.mp3 - -#begin Sounds/Cries/147.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/147.mp3 - -#begin Sounds/Cries/148.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/148.mp3 - -#begin Sounds/Cries/149.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/149.mp3 - -#begin Sounds/Cries/150.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/150.mp3 - -#begin Sounds/Cries/151.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/151.mp3 - -#begin Sounds/Cries/152.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/152.mp3 - -#begin Sounds/Cries/153.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/153.mp3 - -#begin Sounds/Cries/154.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/154.mp3 - -#begin Sounds/Cries/155.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/155.mp3 - -#begin Sounds/Cries/156.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/156.mp3 - -#begin Sounds/Cries/157.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/157.mp3 - -#begin Sounds/Cries/158.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/158.mp3 - -#begin Sounds/Cries/159.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/159.mp3 - -#begin Sounds/Cries/160.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/160.mp3 - -#begin Sounds/Cries/161.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/161.mp3 - -#begin Sounds/Cries/162.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/162.mp3 - -#begin Sounds/Cries/164.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/164.mp3 - -#begin Sounds/Cries/165.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/165.mp3 - -#begin Sounds/Cries/166.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/166.mp3 - -#begin Sounds/Cries/167.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/167.mp3 - -#begin Sounds/Cries/168.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/168.mp3 - -#begin Sounds/Cries/169.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/169.mp3 - -#begin Sounds/Cries/170.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/170.mp3 - -#begin Sounds/Cries/171.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/171.mp3 - -#begin Sounds/Cries/172.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/172.mp3 - -#begin Sounds/Cries/173.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/173.mp3 - -#begin Sounds/Cries/174.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/174.mp3 - -#begin Sounds/Cries/175.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/175.mp3 - -#begin Sounds/Cries/176.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/176.mp3 - -#begin Sounds/Cries/177.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/177.mp3 - -#begin Sounds/Cries/178.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/178.mp3 - -#begin Sounds/Cries/179.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/179.mp3 - -#begin Sounds/Cries/180.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/180.mp3 - -#begin Sounds/Cries/181.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/181.mp3 - -#begin Sounds/Cries/182.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/182.mp3 - -#begin Sounds/Cries/183.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/183.mp3 - -#begin Sounds/Cries/184.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/184.mp3 - -#begin Sounds/Cries/185.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/185.mp3 - -#begin Sounds/Cries/186.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/186.mp3 - -#begin Sounds/Cries/188.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/188.mp3 - -#begin Sounds/Cries/189.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/189.mp3 - -#begin Sounds/Cries/190.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/190.mp3 - -#begin Sounds/Cries/191.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/191.mp3 - -#begin Sounds/Cries/192.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/192.mp3 - -#begin Sounds/Cries/193.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/193.mp3 - -#begin Sounds/Cries/194.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/194.mp3 - -#begin Sounds/Cries/195.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/195.mp3 - -#begin Sounds/Cries/196.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/196.mp3 - -#begin Sounds/Cries/197.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/197.mp3 - -#begin Sounds/Cries/198.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/198.mp3 - -#begin Sounds/Cries/199.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/199.mp3 - -#begin Sounds/Cries/200.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/200.mp3 - -#begin Sounds/Cries/201.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/201.mp3 - -#begin Sounds/Cries/202.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/202.mp3 - -#begin Sounds/Cries/203.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/203.mp3 - -#begin Sounds/Cries/204.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/204.mp3 - -#begin Sounds/Cries/205.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/205.mp3 - -#begin Sounds/Cries/206.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/206.mp3 - -#begin Sounds/Cries/207.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/207.mp3 - -#begin Sounds/Cries/208.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/208.mp3 - -#begin Sounds/Cries/209.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/209.mp3 - -#begin Sounds/Cries/210.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/210.mp3 - -#begin Sounds/Cries/211.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/211.mp3 - -#begin Sounds/Cries/212.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/212.mp3 - -#begin Sounds/Cries/213.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/213.mp3 - -#begin Sounds/Cries/214.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/214.mp3 - -#begin Sounds/Cries/215.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/215.mp3 - -#begin Sounds/Cries/216.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/216.mp3 - -#begin Sounds/Cries/217.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/217.mp3 - -#begin Sounds/Cries/218.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/218.mp3 - -#begin Sounds/Cries/219.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/219.mp3 - -#begin Sounds/Cries/220.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/220.mp3 - -#begin Sounds/Cries/221.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/221.mp3 - -#begin Sounds/Cries/222.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/222.mp3 - -#begin Sounds/Cries/223.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/223.mp3 - -#begin Sounds/Cries/224.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/224.mp3 - -#begin Sounds/Cries/225.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/225.mp3 - -#begin Sounds/Cries/226.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/226.mp3 - -#begin Sounds/Cries/227.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/227.mp3 - -#begin Sounds/Cries/228.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/228.mp3 - -#begin Sounds/Cries/229.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/229.mp3 - -#begin Sounds/Cries/230.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/230.mp3 - -#begin Sounds/Cries/231.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/231.mp3 - -#begin Sounds/Cries/232.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/232.mp3 - -#begin Sounds/Cries/233.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/233.mp3 - -#begin Sounds/Cries/234.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/234.mp3 - -#begin Sounds/Cries/235.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/235.mp3 - -#begin Sounds/Cries/236.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/236.mp3 - -#begin Sounds/Cries/237.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/237.mp3 - -#begin Sounds/Cries/238.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/238.mp3 - -#begin Sounds/Cries/239.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/239.mp3 - -#begin Sounds/Cries/240.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/240.mp3 - -#begin Sounds/Cries/241.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/241.mp3 - -#begin Sounds/Cries/242.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/242.mp3 - -#begin Sounds/Cries/243.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/243.mp3 - -#begin Sounds/Cries/244.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/244.mp3 - -#begin Sounds/Cries/245.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/245.mp3 - -#begin Sounds/Cries/246.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/246.mp3 - -#begin Sounds/Cries/247.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/247.mp3 - -#begin Sounds/Cries/248.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/248.mp3 - -#begin Sounds/Cries/249.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/249.mp3 - -#begin Sounds/Cries/250.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/250.mp3 - -#begin Sounds/Cries/251.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/251.mp3 - -#begin Sounds/Cries/56.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/56.mp3 - -#begin Sounds/Cries/57.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/57.mp3 - -#begin Sounds/Cries/58.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/58.mp3 - -#begin Sounds/Cries/59.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/59.mp3 - -#begin Sounds/Cries/60.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/60.mp3 - -#begin Sounds/Cries/61.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/61.mp3 - -#begin Sounds/Cries/62.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/62.mp3 - -#begin Sounds/Cries/63.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/63.mp3 - -#begin Sounds/Cries/64.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/64.mp3 - -#begin Sounds/Cries/65.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/65.mp3 - -#begin Sounds/Cries/66.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/66.mp3 - -#begin Sounds/Cries/67.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/67.mp3 - -#begin Sounds/Cries/68.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/68.mp3 - -#begin Sounds/Cries/70.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/70.mp3 - -#begin Sounds/Cries/71.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/71.mp3 - -#begin Sounds/Cries/72.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/72.mp3 - -#begin Sounds/Cries/73.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/73.mp3 - -#begin Sounds/Cries/74.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/74.mp3 - -#begin Sounds/Cries/75.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/75.mp3 - -#begin Sounds/Cries/76.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/76.mp3 - -#begin Sounds/Cries/77.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/77.mp3 - -#begin Sounds/Cries/78.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/78.mp3 - -#begin Sounds/Cries/79.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/79.mp3 - -#begin Sounds/Cries/80.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/80.mp3 - -#begin Sounds/Cries/81.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/81.mp3 - -#begin Sounds/Cries/82.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/82.mp3 - -#begin Sounds/Cries/83.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/83.mp3 - -#begin Sounds/Cries/84.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/84.mp3 - -#begin Sounds/Cries/85.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/85.mp3 - -#begin Sounds/Cries/86.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/86.mp3 - -#begin Sounds/Cries/87.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/87.mp3 - -#begin Sounds/Cries/88.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/88.mp3 - -#begin Sounds/Cries/89.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/89.mp3 - -#begin Sounds/Cries/90.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/90.mp3 - -#begin Sounds/Cries/91.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/91.mp3 - -#begin Sounds/Cries/92.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/92.mp3 - -#begin Sounds/Cries/93.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/93.mp3 - -#begin Sounds/Cries/94.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/94.mp3 - -#begin Sounds/Cries/95.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/95.mp3 - -#begin Sounds/Cries/96.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/96.mp3 - -#begin Sounds/Cries/97.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/97.mp3 - -#begin Sounds/Cries/98.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/98.mp3 - -#begin Sounds/Cries/99.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/99.mp3 - -#begin Textures/NPC/11.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/11.png - -#begin Textures/NPC/13.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/13.png - -#begin Textures/NPC/15.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/15.png - -#begin Textures/NPC/Pidgey.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Pidgey.png - -#begin Textures/NPC/16.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/16.png - -#begin Textures/NPC/17.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/17.png - -#begin Textures/NPC/18.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/18.png - -#begin Textures/NPC/19.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/19.png - -#begin Textures/Battle/Status.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Status.png - -#begin Textures/NPC/20.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/20.png - -#begin Textures/NPC/21.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/21.png - -#begin Textures/SecretBase.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/SecretBase.png - -#begin Textures/NPC/GruntF.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/GruntF.png - -#begin Textures/NPC/GruntM.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/GruntM.png - -#begin Textures/NPC/Proton.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Proton.png - -#begin Textures/NPC/Slowpoke.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Slowpoke.png - -#begin Songs/johto_rocket.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_rocket.mp3 - -#begin Songs/johto_rocket_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_rocket_intro.mp3 - -#begin Textures/NPC/Bugsy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Bugsy.png - -#begin Textures/NPC/GymGuy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/GymGuy.png - -#begin Textures/NPC/LittleGirl.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/LittleGirl.png - -#begin Songs/azalea.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/azalea.mp3 - -#begin Textures/NPC/Farfetch'd.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Farfetch'd.png - -#begin Sounds/badge_acquired.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/badge_acquired.mp3 - -#begin Songs/IlexForest.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/IlexForest.mp3 - -#begin Textures/NPC/22.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/22.png - -#begin Sounds/Save.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Save.mp3 - -#begin Textures/Goldenrod.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Goldenrod.png - -#begin Pokemon/Overworld/Normal/1.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/1.png - -#begin Pokemon/Overworld/Normal/10.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/10.png - -#begin Pokemon/Overworld/Normal/100.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/100.png - -#begin Pokemon/Overworld/Normal/101.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/101.png - -#begin Pokemon/Overworld/Normal/102.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/102.png - -#begin Pokemon/Overworld/Normal/103.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/103.png - -#begin Pokemon/Overworld/Normal/104.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/104.png - -#begin Pokemon/Overworld/Normal/105.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/105.png - -#begin Pokemon/Overworld/Normal/106.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/106.png - -#begin Pokemon/Overworld/Normal/107.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/107.png - -#begin Pokemon/Overworld/Normal/108.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/108.png - -#begin Pokemon/Overworld/Normal/109.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/109.png - -#begin Pokemon/Overworld/Normal/11.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/11.png - -#begin Pokemon/Overworld/Normal/110.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/110.png - -#begin Pokemon/Overworld/Normal/111.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/111.png - -#begin Pokemon/Overworld/Normal/112.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/112.png - -#begin Pokemon/Overworld/Normal/113.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/113.png - -#begin Pokemon/Overworld/Normal/114.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/114.png - -#begin Pokemon/Overworld/Normal/115.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/115.png - -#begin Pokemon/Overworld/Normal/116.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/116.png - -#begin Pokemon/Overworld/Normal/117.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/117.png - -#begin Pokemon/Overworld/Normal/118.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/118.png - -#begin Pokemon/Overworld/Normal/119.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/119.png - -#begin Pokemon/Overworld/Normal/12.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/12.png - -#begin Pokemon/Overworld/Normal/120.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/120.png - -#begin Pokemon/Overworld/Normal/121.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/121.png - -#begin Pokemon/Overworld/Normal/122.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/122.png - -#begin Pokemon/Overworld/Normal/123.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/123.png - -#begin Pokemon/Overworld/Normal/124.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/124.png - -#begin Pokemon/Overworld/Normal/125.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/125.png - -#begin Pokemon/Overworld/Normal/126.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/126.png - -#begin Pokemon/Overworld/Normal/127.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/127.png - -#begin Pokemon/Overworld/Normal/128.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/128.png - -#begin Pokemon/Overworld/Normal/129.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/129.png - -#begin Pokemon/Overworld/Normal/13.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/13.png - -#begin Pokemon/Overworld/Normal/130.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/130.png - -#begin Pokemon/Overworld/Normal/131.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/131.png - -#begin Pokemon/Overworld/Normal/132.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/132.png - -#begin Pokemon/Overworld/Normal/133.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/133.png - -#begin Pokemon/Overworld/Normal/134.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/134.png - -#begin Pokemon/Overworld/Normal/135.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/135.png - -#begin Pokemon/Overworld/Normal/136.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/136.png - -#begin Pokemon/Overworld/Normal/137.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/137.png - -#begin Pokemon/Overworld/Normal/138.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/138.png - -#begin Pokemon/Overworld/Normal/139.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/139.png - -#begin Pokemon/Overworld/Normal/14.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/14.png - -#begin Pokemon/Overworld/Normal/140.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/140.png - -#begin Pokemon/Overworld/Normal/141.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/141.png - -#begin Pokemon/Overworld/Normal/142.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/142.png - -#begin Pokemon/Overworld/Normal/143.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/143.png - -#begin Pokemon/Overworld/Normal/144.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/144.png - -#begin Pokemon/Overworld/Normal/145.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/145.png - -#begin Pokemon/Overworld/Normal/146.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/146.png - -#begin Pokemon/Overworld/Normal/147.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/147.png - -#begin Pokemon/Overworld/Normal/148.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/148.png - -#begin Pokemon/Overworld/Normal/149.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/149.png - -#begin Pokemon/Overworld/Normal/15.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/15.png - -#begin Pokemon/Overworld/Normal/150.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/150.png - -#begin Pokemon/Overworld/Normal/151.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/151.png - -#begin Pokemon/Overworld/Normal/152.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/152.png - -#begin Pokemon/Overworld/Normal/153.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/153.png - -#begin Pokemon/Overworld/Normal/154.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/154.png - -#begin Pokemon/Overworld/Normal/155.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/155.png - -#begin Pokemon/Overworld/Normal/156.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/156.png - -#begin Pokemon/Overworld/Normal/157.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/157.png - -#begin Pokemon/Overworld/Normal/158.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/158.png - -#begin Pokemon/Overworld/Normal/159.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/159.png - -#begin Pokemon/Overworld/Normal/16.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/16.png - -#begin Pokemon/Overworld/Normal/160.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/160.png - -#begin Pokemon/Overworld/Normal/161.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/161.png - -#begin Pokemon/Overworld/Normal/162.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/162.png - -#begin Pokemon/Overworld/Normal/163.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/163.png - -#begin Pokemon/Overworld/Normal/164.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/164.png - -#begin Pokemon/Overworld/Normal/165.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/165.png - -#begin Pokemon/Overworld/Normal/166.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/166.png - -#begin Pokemon/Overworld/Normal/167.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/167.png - -#begin Pokemon/Overworld/Normal/168.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/168.png - -#begin Pokemon/Overworld/Normal/169.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/169.png - -#begin Pokemon/Overworld/Normal/17.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/17.png - -#begin Pokemon/Overworld/Normal/170.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/170.png - -#begin Pokemon/Overworld/Normal/171.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/171.png - -#begin Pokemon/Overworld/Normal/172_spiky-eared.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/172_spiky-eared.png - -#begin Pokemon/Overworld/Normal/172.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/172.png - -#begin Pokemon/Overworld/Normal/173.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/173.png - -#begin Pokemon/Overworld/Normal/174.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/174.png - -#begin Pokemon/Overworld/Normal/175.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/175.png - -#begin Pokemon/Overworld/Normal/176.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/176.png - -#begin Pokemon/Overworld/Normal/177.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/177.png - -#begin Pokemon/Overworld/Normal/178.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/178.png - -#begin Pokemon/Overworld/Normal/179.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/179.png - -#begin Pokemon/Overworld/Normal/18.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/18.png - -#begin Pokemon/Overworld/Normal/180.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/180.png - -#begin Pokemon/Overworld/Normal/181.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/181.png - -#begin Pokemon/Overworld/Normal/182.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/182.png - -#begin Pokemon/Overworld/Normal/183.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/183.png - -#begin Pokemon/Overworld/Normal/184.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/184.png - -#begin Pokemon/Overworld/Normal/185.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/185.png - -#begin Pokemon/Overworld/Normal/186.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/186.png - -#begin Pokemon/Overworld/Normal/187.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/187.png - -#begin Pokemon/Overworld/Normal/188.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/188.png - -#begin Pokemon/Overworld/Normal/189.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/189.png - -#begin Pokemon/Overworld/Normal/19.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/19.png - -#begin Pokemon/Overworld/Normal/190.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/190.png - -#begin Pokemon/Overworld/Normal/191.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/191.png - -#begin Pokemon/Overworld/Normal/192.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/192.png - -#begin Pokemon/Overworld/Normal/193.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/193.png - -#begin Pokemon/Overworld/Normal/194.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/194.png - -#begin Pokemon/Overworld/Normal/195.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/195.png - -#begin Pokemon/Overworld/Normal/196.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/196.png - -#begin Pokemon/Overworld/Normal/197.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/197.png - -#begin Pokemon/Overworld/Normal/198.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/198.png - -#begin Pokemon/Overworld/Normal/199.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/199.png - -#begin Pokemon/Overworld/Normal/2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/2.png - -#begin Pokemon/Overworld/Normal/20.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/20.png - -#begin Pokemon/Overworld/Normal/200.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/200.png - -#begin Pokemon/Overworld/Normal/201-a.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-a.png - -#begin Pokemon/Overworld/Normal/201-b.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-b.png - -#begin Pokemon/Overworld/Normal/201-c.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-c.png - -#begin Pokemon/Overworld/Normal/201-d.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-d.png - -#begin Pokemon/Overworld/Normal/201-e.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-e.png - -#begin Pokemon/Overworld/Normal/201-exclamation.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-exclamation.png - -#begin Pokemon/Overworld/Normal/201-f.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-f.png - -#begin Pokemon/Overworld/Normal/201-g.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-g.png - -#begin Pokemon/Overworld/Normal/201-h.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-h.png - -#begin Pokemon/Overworld/Normal/201-i.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-i.png - -#begin Pokemon/Overworld/Normal/201-j.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-j.png - -#begin Pokemon/Overworld/Normal/201-k.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-k.png - -#begin Pokemon/Overworld/Normal/201-l.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-l.png - -#begin Pokemon/Overworld/Normal/201-m.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-m.png - -#begin Pokemon/Overworld/Normal/201-n.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-n.png - -#begin Pokemon/Overworld/Normal/201-o.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-o.png - -#begin Pokemon/Overworld/Normal/201-p.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-p.png - -#begin Pokemon/Overworld/Normal/201-q.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-q.png - -#begin Pokemon/Overworld/Normal/201-question.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-question.png - -#begin Pokemon/Overworld/Normal/201-r.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-r.png - -#begin Pokemon/Overworld/Normal/201-s.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-s.png - -#begin Pokemon/Overworld/Normal/201-t.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-t.png - -#begin Pokemon/Overworld/Normal/201-u.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-u.png - -#begin Pokemon/Overworld/Normal/201-v.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-v.png - -#begin Pokemon/Overworld/Normal/201-w.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-w.png - -#begin Pokemon/Overworld/Normal/201-x.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-x.png - -#begin Pokemon/Overworld/Normal/201-y.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-y.png - -#begin Pokemon/Overworld/Normal/201-z.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201-z.png - -#begin Pokemon/Overworld/Normal/201.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/201.png - -#begin Pokemon/Overworld/Normal/202.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/202.png - -#begin Pokemon/Overworld/Normal/203.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/203.png - -#begin Pokemon/Overworld/Normal/204.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/204.png - -#begin Pokemon/Overworld/Normal/205.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/205.png - -#begin Pokemon/Overworld/Normal/206.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/206.png - -#begin Pokemon/Overworld/Normal/207.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/207.png - -#begin Pokemon/Overworld/Normal/208.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/208.png - -#begin Pokemon/Overworld/Normal/209.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/209.png - -#begin Pokemon/Overworld/Normal/21.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/21.png - -#begin Pokemon/Overworld/Normal/210.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/210.png - -#begin Pokemon/Overworld/Normal/211.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/211.png - -#begin Pokemon/Overworld/Normal/212.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/212.png - -#begin Pokemon/Overworld/Normal/213.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/213.png - -#begin Pokemon/Overworld/Normal/214.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/214.png - -#begin Pokemon/Overworld/Normal/215.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/215.png - -#begin Pokemon/Overworld/Normal/216.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/216.png - -#begin Pokemon/Overworld/Normal/217.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/217.png - -#begin Pokemon/Overworld/Normal/218.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/218.png - -#begin Pokemon/Overworld/Normal/219.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/219.png - -#begin Pokemon/Overworld/Normal/22.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/22.png - -#begin Pokemon/Overworld/Normal/220.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/220.png - -#begin Pokemon/Overworld/Normal/221.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/221.png - -#begin Pokemon/Overworld/Normal/222.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/222.png - -#begin Pokemon/Overworld/Normal/223.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/223.png - -#begin Pokemon/Overworld/Normal/224.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/224.png - -#begin Pokemon/Overworld/Normal/225.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/225.png - -#begin Pokemon/Overworld/Normal/226.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/226.png - -#begin Pokemon/Overworld/Normal/227.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/227.png - -#begin Pokemon/Overworld/Normal/228.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/228.png - -#begin Pokemon/Overworld/Normal/229.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/229.png - -#begin Pokemon/Overworld/Normal/23.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/23.png - -#begin Pokemon/Overworld/Normal/230.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/230.png - -#begin Pokemon/Overworld/Normal/231.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/231.png - -#begin Pokemon/Overworld/Normal/232.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/232.png - -#begin Pokemon/Overworld/Normal/233.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/233.png - -#begin Pokemon/Overworld/Normal/234.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/234.png - -#begin Pokemon/Overworld/Normal/235.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/235.png - -#begin Pokemon/Overworld/Normal/236.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/236.png - -#begin Pokemon/Overworld/Normal/237.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/237.png - -#begin Pokemon/Overworld/Normal/238.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/238.png - -#begin Pokemon/Overworld/Normal/239.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/239.png - -#begin Pokemon/Overworld/Normal/24.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/24.png - -#begin Pokemon/Overworld/Normal/240.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/240.png - -#begin Pokemon/Overworld/Normal/241.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/241.png - -#begin Pokemon/Overworld/Normal/242.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/242.png - -#begin Pokemon/Overworld/Normal/243.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/243.png - -#begin Pokemon/Overworld/Normal/244.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/244.png - -#begin Pokemon/Overworld/Normal/245.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/245.png - -#begin Pokemon/Overworld/Normal/246.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/246.png - -#begin Pokemon/Overworld/Normal/247.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/247.png - -#begin Pokemon/Overworld/Normal/248.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/248.png - -#begin Pokemon/Overworld/Normal/249.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/249.png - -#begin Pokemon/Overworld/Normal/25.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/25.png - -#begin Pokemon/Overworld/Normal/250.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/250.png - -#begin Pokemon/Overworld/Normal/251.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/251.png - -#begin Pokemon/Overworld/Normal/26.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/26.png - -#begin Pokemon/Overworld/Normal/27.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/27.png - -#begin Pokemon/Overworld/Normal/28.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/28.png - -#begin Pokemon/Overworld/Normal/29.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/29.png - -#begin Pokemon/Overworld/Normal/3.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/3.png - -#begin Pokemon/Overworld/Normal/30.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/30.png - -#begin Pokemon/Overworld/Normal/31.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/31.png - -#begin Pokemon/Overworld/Normal/32.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/32.png - -#begin Pokemon/Overworld/Normal/33.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/33.png - -#begin Pokemon/Overworld/Normal/34.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/34.png - -#begin Pokemon/Overworld/Normal/35.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/35.png - -#begin Pokemon/Overworld/Normal/36.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/36.png - -#begin Pokemon/Overworld/Normal/37.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/37.png - -#begin Pokemon/Overworld/Normal/38.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/38.png - -#begin Pokemon/Overworld/Normal/39.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/39.png - -#begin Pokemon/Overworld/Normal/4.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/4.png - -#begin Pokemon/Overworld/Normal/40.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/40.png - -#begin Pokemon/Overworld/Normal/41.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/41.png - -#begin Pokemon/Overworld/Normal/42.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/42.png - -#begin Pokemon/Overworld/Normal/43.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/43.png - -#begin Pokemon/Overworld/Normal/44.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/44.png - -#begin Pokemon/Overworld/Normal/45.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/45.png - -#begin Pokemon/Overworld/Normal/46.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/46.png - -#begin Pokemon/Overworld/Normal/47.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/47.png - -#begin Pokemon/Overworld/Normal/48.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/48.png - -#begin Pokemon/Overworld/Normal/49.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/49.png - -#begin Pokemon/Overworld/Normal/5.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/5.png - -#begin Pokemon/Overworld/Normal/50.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/50.png - -#begin Pokemon/Overworld/Normal/51.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/51.png - -#begin Pokemon/Overworld/Normal/52.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/52.png - -#begin Pokemon/Overworld/Normal/53.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/53.png - -#begin Pokemon/Overworld/Normal/54.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/54.png - -#begin Pokemon/Overworld/Normal/55.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/55.png - -#begin Pokemon/Overworld/Normal/56.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/56.png - -#begin Pokemon/Overworld/Normal/57.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/57.png - -#begin Pokemon/Overworld/Normal/58.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/58.png - -#begin Pokemon/Overworld/Normal/59.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/59.png - -#begin Pokemon/Overworld/Normal/6.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/6.png - -#begin Pokemon/Overworld/Normal/60.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/60.png - -#begin Pokemon/Overworld/Normal/61.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/61.png - -#begin Pokemon/Overworld/Normal/62.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/62.png - -#begin Pokemon/Overworld/Normal/63.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/63.png - -#begin Pokemon/Overworld/Normal/64.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/64.png - -#begin Pokemon/Overworld/Normal/65.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/65.png - -#begin Pokemon/Overworld/Normal/66.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/66.png - -#begin Pokemon/Overworld/Normal/67.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/67.png - -#begin Pokemon/Overworld/Normal/68.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/68.png - -#begin Pokemon/Overworld/Normal/69.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/69.png - -#begin Pokemon/Overworld/Normal/7.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/7.png - -#begin Pokemon/Overworld/Normal/70.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/70.png - -#begin Pokemon/Overworld/Normal/71.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/71.png - -#begin Pokemon/Overworld/Normal/72.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/72.png - -#begin Pokemon/Overworld/Normal/73.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/73.png - -#begin Pokemon/Overworld/Normal/74.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/74.png - -#begin Pokemon/Overworld/Normal/75.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/75.png - -#begin Pokemon/Overworld/Normal/76.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/76.png - -#begin Pokemon/Overworld/Normal/77.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/77.png - -#begin Pokemon/Overworld/Normal/78.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/78.png - -#begin Pokemon/Overworld/Normal/79.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/79.png - -#begin Pokemon/Overworld/Normal/8.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/8.png - -#begin Pokemon/Overworld/Normal/80.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/80.png - -#begin Pokemon/Overworld/Normal/81.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/81.png - -#begin Pokemon/Overworld/Normal/82.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/82.png - -#begin Pokemon/Overworld/Normal/83.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/83.png - -#begin Pokemon/Overworld/Normal/84.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/84.png - -#begin Pokemon/Overworld/Normal/85.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/85.png - -#begin Pokemon/Overworld/Normal/86.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/86.png - -#begin Pokemon/Overworld/Normal/87.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/87.png - -#begin Pokemon/Overworld/Normal/88.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/88.png - -#begin Pokemon/Overworld/Normal/89.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/89.png - -#begin Pokemon/Overworld/Normal/9.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/9.png - -#begin Pokemon/Overworld/Normal/90.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/90.png - -#begin Pokemon/Overworld/Normal/91.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/91.png - -#begin Pokemon/Overworld/Normal/92.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/92.png - -#begin Pokemon/Overworld/Normal/93.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/93.png - -#begin Pokemon/Overworld/Normal/94.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/94.png - -#begin Pokemon/Overworld/Normal/95.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/95.png - -#begin Pokemon/Overworld/Normal/96.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/96.png - -#begin Pokemon/Overworld/Normal/97.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/97.png - -#begin Pokemon/Overworld/Normal/98.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/98.png - -#begin Pokemon/Overworld/Normal/99.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/99.png - -#begin Pokemon/Overworld/Shiny/1.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/1.png - -#begin Pokemon/Overworld/Shiny/10.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/10.png - -#begin Pokemon/Overworld/Shiny/100.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/100.png - -#begin Pokemon/Overworld/Shiny/101.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/101.png - -#begin Pokemon/Overworld/Shiny/102.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/102.png - -#begin Pokemon/Overworld/Shiny/103.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/103.png - -#begin Pokemon/Overworld/Shiny/104.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/104.png - -#begin Pokemon/Overworld/Shiny/105.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/105.png - -#begin Pokemon/Overworld/Shiny/106.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/106.png - -#begin Pokemon/Overworld/Shiny/107.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/107.png - -#begin Pokemon/Overworld/Shiny/108.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/108.png - -#begin Pokemon/Overworld/Shiny/109.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/109.png - -#begin Pokemon/Overworld/Shiny/11.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/11.png - -#begin Pokemon/Overworld/Shiny/110.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/110.png - -#begin Pokemon/Overworld/Shiny/111.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/111.png - -#begin Pokemon/Overworld/Shiny/112.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/112.png - -#begin Pokemon/Overworld/Shiny/113.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/113.png - -#begin Pokemon/Overworld/Shiny/114.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/114.png - -#begin Pokemon/Overworld/Shiny/115.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/115.png - -#begin Pokemon/Overworld/Shiny/116.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/116.png - -#begin Pokemon/Overworld/Shiny/117.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/117.png - -#begin Pokemon/Overworld/Shiny/118.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/118.png - -#begin Pokemon/Overworld/Shiny/119.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/119.png - -#begin Pokemon/Overworld/Shiny/12.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/12.png - -#begin Pokemon/Overworld/Shiny/120.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/120.png - -#begin Pokemon/Overworld/Shiny/121.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/121.png - -#begin Pokemon/Overworld/Shiny/122.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/122.png - -#begin Pokemon/Overworld/Shiny/123.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/123.png - -#begin Pokemon/Overworld/Shiny/124.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/124.png - -#begin Pokemon/Overworld/Shiny/125.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/125.png - -#begin Pokemon/Overworld/Shiny/126.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/126.png - -#begin Pokemon/Overworld/Shiny/127.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/127.png - -#begin Pokemon/Overworld/Shiny/128.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/128.png - -#begin Pokemon/Overworld/Shiny/129.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/129.png - -#begin Pokemon/Overworld/Shiny/13.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/13.png - -#begin Pokemon/Overworld/Shiny/130.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/130.png - -#begin Pokemon/Overworld/Shiny/131.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/131.png - -#begin Pokemon/Overworld/Shiny/132.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/132.png - -#begin Pokemon/Overworld/Shiny/133.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/133.png - -#begin Pokemon/Overworld/Shiny/134.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/134.png - -#begin Pokemon/Overworld/Shiny/135.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/135.png - -#begin Pokemon/Overworld/Shiny/136.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/136.png - -#begin Pokemon/Overworld/Shiny/137.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/137.png - -#begin Pokemon/Overworld/Shiny/138.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/138.png - -#begin Pokemon/Overworld/Shiny/139.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/139.png - -#begin Pokemon/Overworld/Shiny/14.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/14.png - -#begin Pokemon/Overworld/Shiny/140.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/140.png - -#begin Pokemon/Overworld/Shiny/141.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/141.png - -#begin Pokemon/Overworld/Shiny/142.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/142.png - -#begin Pokemon/Overworld/Shiny/143.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/143.png - -#begin Pokemon/Overworld/Shiny/144.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/144.png - -#begin Pokemon/Overworld/Shiny/145.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/145.png - -#begin Pokemon/Overworld/Shiny/146.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/146.png - -#begin Pokemon/Overworld/Shiny/147.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/147.png - -#begin Pokemon/Overworld/Shiny/148.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/148.png - -#begin Pokemon/Overworld/Shiny/149.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/149.png - -#begin Pokemon/Overworld/Shiny/15.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/15.png - -#begin Pokemon/Overworld/Shiny/150.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/150.png - -#begin Pokemon/Overworld/Shiny/151.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/151.png - -#begin Pokemon/Overworld/Shiny/152.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/152.png - -#begin Pokemon/Overworld/Shiny/153.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/153.png - -#begin Pokemon/Overworld/Shiny/154.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/154.png - -#begin Pokemon/Overworld/Shiny/155.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/155.png - -#begin Pokemon/Overworld/Shiny/156.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/156.png - -#begin Pokemon/Overworld/Shiny/157.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/157.png - -#begin Pokemon/Overworld/Shiny/158.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/158.png - -#begin Pokemon/Overworld/Shiny/159.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/159.png - -#begin Pokemon/Overworld/Shiny/16.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/16.png - -#begin Pokemon/Overworld/Shiny/160.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/160.png - -#begin Pokemon/Overworld/Shiny/161.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/161.png - -#begin Pokemon/Overworld/Shiny/162.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/162.png - -#begin Pokemon/Overworld/Shiny/163.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/163.png - -#begin Pokemon/Overworld/Shiny/164.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/164.png - -#begin Pokemon/Overworld/Shiny/165.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/165.png - -#begin Pokemon/Overworld/Shiny/166.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/166.png - -#begin Pokemon/Overworld/Shiny/167.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/167.png - -#begin Pokemon/Overworld/Shiny/168.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/168.png - -#begin Pokemon/Overworld/Shiny/169.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/169.png - -#begin Pokemon/Overworld/Shiny/17.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/17.png - -#begin Pokemon/Overworld/Shiny/170.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/170.png - -#begin Pokemon/Overworld/Shiny/171.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/171.png - -#begin Pokemon/Overworld/Shiny/172_spiky-eared.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/172_spiky-eared.png - -#begin Pokemon/Overworld/Shiny/172.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/172.png - -#begin Pokemon/Overworld/Shiny/173.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/173.png - -#begin Pokemon/Overworld/Shiny/174.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/174.png - -#begin Pokemon/Overworld/Shiny/175.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/175.png - -#begin Pokemon/Overworld/Shiny/176.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/176.png - -#begin Pokemon/Overworld/Shiny/177.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/177.png - -#begin Pokemon/Overworld/Shiny/178.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/178.png - -#begin Pokemon/Overworld/Shiny/179.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/179.png - -#begin Pokemon/Overworld/Shiny/18.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/18.png - -#begin Pokemon/Overworld/Shiny/180.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/180.png - -#begin Pokemon/Overworld/Shiny/181.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/181.png - -#begin Pokemon/Overworld/Shiny/182.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/182.png - -#begin Pokemon/Overworld/Shiny/183.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/183.png - -#begin Pokemon/Overworld/Shiny/184.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/184.png - -#begin Pokemon/Overworld/Shiny/185.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/185.png - -#begin Pokemon/Overworld/Shiny/186.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/186.png - -#begin Pokemon/Overworld/Shiny/187.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/187.png - -#begin Pokemon/Overworld/Shiny/188.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/188.png - -#begin Pokemon/Overworld/Shiny/189.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/189.png - -#begin Pokemon/Overworld/Shiny/19.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/19.png - -#begin Pokemon/Overworld/Shiny/190.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/190.png - -#begin Pokemon/Overworld/Shiny/191.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/191.png - -#begin Pokemon/Overworld/Shiny/192.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/192.png - -#begin Pokemon/Overworld/Shiny/193.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/193.png - -#begin Pokemon/Overworld/Shiny/194.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/194.png - -#begin Pokemon/Overworld/Shiny/195.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/195.png - -#begin Pokemon/Overworld/Shiny/196.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/196.png - -#begin Pokemon/Overworld/Shiny/197.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/197.png - -#begin Pokemon/Overworld/Shiny/198.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/198.png - -#begin Pokemon/Overworld/Shiny/199.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/199.png - -#begin Pokemon/Overworld/Shiny/2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/2.png - -#begin Pokemon/Overworld/Shiny/20.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/20.png - -#begin Pokemon/Overworld/Shiny/200.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/200.png - -#begin Pokemon/Overworld/Shiny/201-a.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-a.png - -#begin Pokemon/Overworld/Shiny/201-b.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-b.png - -#begin Pokemon/Overworld/Shiny/201-c.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-c.png - -#begin Pokemon/Overworld/Shiny/201-d.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-d.png - -#begin Pokemon/Overworld/Shiny/201-e.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-e.png - -#begin Pokemon/Overworld/Shiny/201-exclamation.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-exclamation.png - -#begin Pokemon/Overworld/Shiny/201-f.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-f.png - -#begin Pokemon/Overworld/Shiny/201-g.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-g.png - -#begin Pokemon/Overworld/Shiny/201-h.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-h.png - -#begin Pokemon/Overworld/Shiny/201-i.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-i.png - -#begin Pokemon/Overworld/Shiny/201-j.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-j.png - -#begin Pokemon/Overworld/Shiny/201-k.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-k.png - -#begin Pokemon/Overworld/Shiny/201-l.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-l.png - -#begin Pokemon/Overworld/Shiny/201-m.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-m.png - -#begin Pokemon/Overworld/Shiny/201-n.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-n.png - -#begin Pokemon/Overworld/Shiny/201-o.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-o.png - -#begin Pokemon/Overworld/Shiny/201-p.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-p.png - -#begin Pokemon/Overworld/Shiny/201-q.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-q.png - -#begin Pokemon/Overworld/Shiny/201-question.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-question.png - -#begin Pokemon/Overworld/Shiny/201-r.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-r.png - -#begin Pokemon/Overworld/Shiny/201-s.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-s.png - -#begin Pokemon/Overworld/Shiny/201-t.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-t.png - -#begin Pokemon/Overworld/Shiny/201-u.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-u.png - -#begin Pokemon/Overworld/Shiny/201-v.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-v.png - -#begin Pokemon/Overworld/Shiny/201-w.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-w.png - -#begin Pokemon/Overworld/Shiny/201-x.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-x.png - -#begin Pokemon/Overworld/Shiny/201-y.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-y.png - -#begin Pokemon/Overworld/Shiny/201-z.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201-z.png - -#begin Pokemon/Overworld/Shiny/201.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/201.png - -#begin Pokemon/Overworld/Shiny/202.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/202.png - -#begin Pokemon/Overworld/Shiny/203.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/203.png - -#begin Pokemon/Overworld/Shiny/204.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/204.png - -#begin Pokemon/Overworld/Shiny/205.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/205.png - -#begin Pokemon/Overworld/Shiny/206.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/206.png - -#begin Pokemon/Overworld/Shiny/207.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/207.png - -#begin Pokemon/Overworld/Shiny/208.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/208.png - -#begin Pokemon/Overworld/Shiny/209.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/209.png - -#begin Pokemon/Overworld/Shiny/21.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/21.png - -#begin Pokemon/Overworld/Shiny/210.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/210.png - -#begin Pokemon/Overworld/Shiny/211.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/211.png - -#begin Pokemon/Overworld/Shiny/212.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/212.png - -#begin Pokemon/Overworld/Shiny/213.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/213.png - -#begin Pokemon/Overworld/Shiny/214.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/214.png - -#begin Pokemon/Overworld/Shiny/215.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/215.png - -#begin Pokemon/Overworld/Shiny/216.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/216.png - -#begin Pokemon/Overworld/Shiny/217.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/217.png - -#begin Pokemon/Overworld/Shiny/218.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/218.png - -#begin Pokemon/Overworld/Shiny/219.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/219.png - -#begin Pokemon/Overworld/Shiny/22.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/22.png - -#begin Pokemon/Overworld/Shiny/220.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/220.png - -#begin Pokemon/Overworld/Shiny/221.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/221.png - -#begin Pokemon/Overworld/Shiny/222.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/222.png - -#begin Pokemon/Overworld/Shiny/223.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/223.png - -#begin Pokemon/Overworld/Shiny/224.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/224.png - -#begin Pokemon/Overworld/Shiny/225.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/225.png - -#begin Pokemon/Overworld/Shiny/226.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/226.png - -#begin Pokemon/Overworld/Shiny/227.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/227.png - -#begin Pokemon/Overworld/Shiny/228.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/228.png - -#begin Pokemon/Overworld/Shiny/229.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/229.png - -#begin Pokemon/Overworld/Shiny/23.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/23.png - -#begin Pokemon/Overworld/Shiny/230.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/230.png - -#begin Pokemon/Overworld/Shiny/231.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/231.png - -#begin Pokemon/Overworld/Shiny/232.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/232.png - -#begin Pokemon/Overworld/Shiny/233.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/233.png - -#begin Pokemon/Overworld/Shiny/234.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/234.png - -#begin Pokemon/Overworld/Shiny/235.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/235.png - -#begin Pokemon/Overworld/Shiny/236.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/236.png - -#begin Pokemon/Overworld/Shiny/237.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/237.png - -#begin Pokemon/Overworld/Shiny/238.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/238.png - -#begin Pokemon/Overworld/Shiny/239.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/239.png - -#begin Pokemon/Overworld/Shiny/24.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/24.png - -#begin Pokemon/Overworld/Shiny/240.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/240.png - -#begin Pokemon/Overworld/Shiny/241.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/241.png - -#begin Pokemon/Overworld/Shiny/242.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/242.png - -#begin Pokemon/Overworld/Shiny/243.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/243.png - -#begin Pokemon/Overworld/Shiny/244.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/244.png - -#begin Pokemon/Overworld/Shiny/245.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/245.png - -#begin Pokemon/Overworld/Shiny/246.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/246.png - -#begin Pokemon/Overworld/Shiny/247.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/247.png - -#begin Pokemon/Overworld/Shiny/248.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/248.png - -#begin Pokemon/Overworld/Shiny/249.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/249.png - -#begin Pokemon/Overworld/Shiny/25.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/25.png - -#begin Pokemon/Overworld/Shiny/250.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/250.png - -#begin Pokemon/Overworld/Shiny/251.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/251.png - -#begin Pokemon/Overworld/Shiny/26.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/26.png - -#begin Pokemon/Overworld/Shiny/27.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/27.png - -#begin Pokemon/Overworld/Shiny/28.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/28.png - -#begin Pokemon/Overworld/Shiny/29.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/29.png - -#begin Pokemon/Overworld/Shiny/3.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/3.png - -#begin Pokemon/Overworld/Shiny/30.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/30.png - -#begin Pokemon/Overworld/Shiny/31.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/31.png - -#begin Pokemon/Overworld/Shiny/32.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/32.png - -#begin Pokemon/Overworld/Shiny/33.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/33.png - -#begin Pokemon/Overworld/Shiny/34.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/34.png - -#begin Pokemon/Overworld/Shiny/35.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/35.png - -#begin Pokemon/Overworld/Shiny/36.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/36.png - -#begin Pokemon/Overworld/Shiny/37.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/37.png - -#begin Pokemon/Overworld/Shiny/38.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/38.png - -#begin Pokemon/Overworld/Shiny/39.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/39.png - -#begin Pokemon/Overworld/Shiny/4.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/4.png - -#begin Pokemon/Overworld/Shiny/40.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/40.png - -#begin Pokemon/Overworld/Shiny/41.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/41.png - -#begin Pokemon/Overworld/Shiny/42.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/42.png - -#begin Pokemon/Overworld/Shiny/43.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/43.png - -#begin Pokemon/Overworld/Shiny/44.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/44.png - -#begin Pokemon/Overworld/Shiny/45.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/45.png - -#begin Pokemon/Overworld/Shiny/46.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/46.png - -#begin Pokemon/Overworld/Shiny/47.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/47.png - -#begin Pokemon/Overworld/Shiny/48.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/48.png - -#begin Pokemon/Overworld/Shiny/49.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/49.png - -#begin Pokemon/Overworld/Shiny/5.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/5.png - -#begin Pokemon/Overworld/Shiny/50.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/50.png - -#begin Pokemon/Overworld/Shiny/51.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/51.png - -#begin Pokemon/Overworld/Shiny/52.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/52.png - -#begin Pokemon/Overworld/Shiny/53.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/53.png - -#begin Pokemon/Overworld/Shiny/54.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/54.png - -#begin Pokemon/Overworld/Shiny/55.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/55.png - -#begin Pokemon/Overworld/Shiny/56.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/56.png - -#begin Pokemon/Overworld/Shiny/57.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/57.png - -#begin Pokemon/Overworld/Shiny/58.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/58.png - -#begin Pokemon/Overworld/Shiny/59.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/59.png - -#begin Pokemon/Overworld/Shiny/6.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/6.png - -#begin Pokemon/Overworld/Shiny/60.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/60.png - -#begin Pokemon/Overworld/Shiny/61.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/61.png - -#begin Pokemon/Overworld/Shiny/62.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/62.png - -#begin Pokemon/Overworld/Shiny/63.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/63.png - -#begin Pokemon/Overworld/Shiny/64.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/64.png - -#begin Pokemon/Overworld/Shiny/65.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/65.png - -#begin Pokemon/Overworld/Shiny/66.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/66.png - -#begin Pokemon/Overworld/Shiny/67.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/67.png - -#begin Pokemon/Overworld/Shiny/68.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/68.png - -#begin Pokemon/Overworld/Shiny/69.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/69.png - -#begin Pokemon/Overworld/Shiny/7.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/7.png - -#begin Pokemon/Overworld/Shiny/70.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/70.png - -#begin Pokemon/Overworld/Shiny/71.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/71.png - -#begin Pokemon/Overworld/Shiny/72.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/72.png - -#begin Pokemon/Overworld/Shiny/73.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/73.png - -#begin Pokemon/Overworld/Shiny/74.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/74.png - -#begin Pokemon/Overworld/Shiny/75.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/75.png - -#begin Pokemon/Overworld/Shiny/76.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/76.png - -#begin Pokemon/Overworld/Shiny/77.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/77.png - -#begin Pokemon/Overworld/Shiny/78.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/78.png - -#begin Pokemon/Overworld/Shiny/79.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/79.png - -#begin Pokemon/Overworld/Shiny/8.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/8.png - -#begin Pokemon/Overworld/Shiny/80.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/80.png - -#begin Pokemon/Overworld/Shiny/81.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/81.png - -#begin Pokemon/Overworld/Shiny/82.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/82.png - -#begin Pokemon/Overworld/Shiny/83.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/83.png - -#begin Pokemon/Overworld/Shiny/84.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/84.png - -#begin Pokemon/Overworld/Shiny/85.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/85.png - -#begin Pokemon/Overworld/Shiny/86.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/86.png - -#begin Pokemon/Overworld/Shiny/87.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/87.png - -#begin Pokemon/Overworld/Shiny/88.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/88.png - -#begin Pokemon/Overworld/Shiny/89.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/89.png - -#begin Pokemon/Overworld/Shiny/9.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/9.png - -#begin Pokemon/Overworld/Shiny/90.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/90.png - -#begin Pokemon/Overworld/Shiny/91.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/91.png - -#begin Pokemon/Overworld/Shiny/92.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/92.png - -#begin Pokemon/Overworld/Shiny/93.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/93.png - -#begin Pokemon/Overworld/Shiny/94.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/94.png - -#begin Pokemon/Overworld/Shiny/95.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/95.png - -#begin Pokemon/Overworld/Shiny/96.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/96.png - -#begin Pokemon/Overworld/Shiny/97.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/97.png - -#begin Pokemon/Overworld/Shiny/98.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/98.png - -#begin Pokemon/Overworld/Shiny/99.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/99.png - -#begin Textures/NPC/Nate.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Nate.png - -#begin Textures/NPC/Rosa.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Rosa.png - -#begin GUI/Intro/VSIntro.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Intro/VSIntro.png - -#begin Textures/Alph.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Alph.png - -#begin Songs/RouteMusic2.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic2.mp3 - -#begin Sounds/Battle/running.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/running.mp3 - -#begin Sounds/TossPokeball.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/TossPokeball.mp3 - -#begin Sounds/PokeballOpen.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/PokeballOpen.mp3 - -#begin Textures/NPC/23.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/23.png - -#begin Textures/NPC/24.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/24.png - -#begin Textures/NPC/25.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/25.png - -#begin Pokemon/Egg/Egg_back.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Egg/Egg_back.png - -#begin Pokemon/Egg/Egg_front.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Egg/Egg_front.png - -#begin Textures/NPC/Lyra.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Lyra.png - -#begin GUI/EggBreak.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/EggBreak.png - -#begin Textures/NPC/Whitney.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Whitney.png - -#begin Songs/Goldenrod.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/Goldenrod.mp3 - -#begin Textures/NPC/26.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/26.png - -#begin Textures/NPC/27.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/27.png - -#begin Textures/Kanto0.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Kanto0.png - -#begin Songs/alph.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/alph.mp3 - -#begin Textures/NPC/29.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/29.png - -#begin Textures/Park.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Park.png - -#begin Textures/Battle/Fighting/forcepalmhand.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Fighting/forcepalmhand.png - -#begin Textures/Battle/Fighting/forcepalmhandfaded.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Fighting/forcepalmhandfaded.png - -#begin Textures/Battle/Fighting/forcepalmhandfading.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Fighting/forcepalmhandfading.png - -#begin Textures/Battle/Fighting/forcepalmimpact.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Fighting/forcepalmimpact.png - -#begin Textures/Battle/Fighting/forcepalmparticle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Fighting/forcepalmparticle.png - -#begin GUI/Logos/KolbenBrand.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Logos/KolbenBrand.png - -#begin GUI/Logos/KolbenText.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Logos/KolbenText.png - -#begin Textures/Battle/StatChange/Heal.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/StatChange/Heal.png - -#begin Textures/ecruteak.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/ecruteak.png - -#begin Textures/NPC/30.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/30.png - -#begin Textures/NPC/Pokemon/243_stone.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Pokemon/243_stone.png - -#begin Textures/NPC/Pokemon/244_stone.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Pokemon/244_stone.png - -#begin Textures/NPC/Pokemon/245_stone.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Pokemon/245_stone.png - -#begin Textures/NPC/Eusine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Eusine.png - -#begin Textures/NPC/Morty.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Morty.png - -#begin Songs/burnedtower.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/burnedtower.mp3 - -#begin Songs/ecruteak.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/ecruteak.mp3 - -#begin Textures/NPC/31.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/31.png - -#begin Songs/tintower.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/tintower.mp3 - -#begin Songs/kimono.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/kimono.mp3 - -#begin Songs/RouteMusic3.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic3.mp3 - -#begin Textures/NPC/32.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/32.png - -#begin Textures/Olivine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Olivine.png - -#begin GUI/Logos/GameJolt.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Logos/GameJolt.png - -#begin Textures/Mahogany.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Mahogany.png - -#begin Textures/NPC/Jasmine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Jasmine.png - -#begin Textures/House4.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/House4.png - -#begin Songs/lighthouse.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/lighthouse.mp3 - -#begin Textures/NPC/33.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/33.png - -#begin Textures/cianwood.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/cianwood.png - -#begin Songs/nationalpark.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/nationalpark.mp3 - -#begin Textures/NPC/34.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/34.png - -#begin Textures/NPC/35.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/35.png - -#begin Textures/NPC/Chuck.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Chuck.png - -#begin Textures/Seasons/PlantColoring.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Seasons/PlantColoring.png - -#begin Textures/Seasons/Grass.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Seasons/Grass.png - -#begin Textures/Seasons/Flowers.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Seasons/Flowers.png - -#begin Textures/Battle/Water/bubble.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Water/bubble.png - -#begin Songs/RouteMusic4.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic4.mp3 - -#begin Textures/Battle/Water/Water.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Battle/Water/Water.png - -#begin Textures/Lakeofrage.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Lakeofrage.png - -#begin Textures/rocketbase.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/rocketbase.png - -#begin Textures/NPC/Ariana.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Ariana.png - -#begin Songs/rHideout.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/rHideout.mp3 - -#begin Textures/Emblem/trainer.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/trainer.png - -#begin Textures/Emblem/alph.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/alph.png - -#begin Textures/Emblem/champion.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/champion.png - -#begin Textures/Emblem/eevee.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/eevee.png - -#begin Textures/Emblem/genetics.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/genetics.png - -#begin Textures/Emblem/legendary.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/legendary.png - -#begin Textures/Emblem/overkill.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/overkill.png - -#begin Textures/Emblem/pokedex.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/pokedex.png - -#begin Textures/Emblem/snow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/snow.png - -#begin Textures/Emblem/stars.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/stars.png - -#begin Textures/Emblem/cyber.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/cyber.png - -#begin Textures/Emblem/glowing.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/glowing.png - -#begin Textures/Emblem/johto.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/johto.png - -#begin Textures/Emblem/kanto.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/kanto.png - -#begin Textures/Emblem/unodostres.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/unodostres.png - -#begin Textures/Emblem/material.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/material.png - -#begin Textures/NPC/darkfire.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/darkfire.png - -#begin Textures/NPC/dracohouston.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/dracohouston.png - -#begin Textures/NPC/nilllzz.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/nilllzz.png - -#begin Textures/NPC/princevade.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/princevade.png - -#begin Songs/johto_rocket_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_rocket_encounter.mp3 - -#begin Textures/Emblem/fog.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/fog.png - -#begin Textures/Emblem/glacier.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/glacier.png - -#begin Textures/Emblem/hive.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/hive.png - -#begin Textures/Emblem/mineral.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/mineral.png - -#begin Textures/Emblem/plain.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/plain.png - -#begin Textures/Emblem/rising.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/rising.png - -#begin Textures/Emblem/storm.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/storm.png - -#begin Textures/Emblem/zephyr.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/zephyr.png - -#begin Textures/Emblem/border.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/border.png - -#begin Textures/NPC/36.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/36.png - -#begin Textures/NPC/37.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/37.png - -#begin Textures/NPC/Lance.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Lance.png - -#begin Textures/NPC/Petrel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Petrel.png - -#begin Textures/NPC/Pryce.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Pryce.png - -#begin Textures/NPC/38.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/38.png - -#begin Textures/NPC/39.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/39.png - -#begin Textures/NPC/40.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/40.png - -#begin Textures/NPC/41.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/41.png - -#begin Textures/NPC/42.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/42.png - -#begin Textures/NPC/43.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/43.png - -#begin Textures/NPC/44.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/44.png - -#begin Textures/NPC/45.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/45.png - -#begin Textures/NPC/46.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/46.png - -#begin Textures/NPC/47.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/47.png - -#begin Textures/NPC/48.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/48.png - -#begin Textures/NPC/50.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/50.png - -#begin Textures/NPC/51.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/51.png - -#begin Textures/NPC/52.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/52.png - -#begin Textures/NPC/53.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/53.png - -#begin Textures/NPC/54.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/54.png - -#begin Textures/NPC/55.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/55.png - -#begin Textures/NPC/56.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/56.png - -#begin Textures/NPC/57.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/57.png - -#begin Textures/NPC/58.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/58.png - -#begin Textures/NPC/59.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/59.png - -#begin Textures/NPC/60.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/60.png - -#begin Textures/NPC/64.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/64.png - -#begin Textures/NPC/65.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/65.png - -#begin Textures/NPC/66.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/66.png - -#begin Textures/NPC/67.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/67.png - -#begin Textures/NPC/68.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/68.png - -#begin Textures/NPC/69.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/69.png - -#begin Textures/NPC/70.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/70.png - -#begin Textures/NPC/71.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/71.png - -#begin Textures/NPC/cros.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/cros.png - -#begin Textures/NPC/72.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/72.png - -#begin Textures/NPC/73.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/73.png - -#begin Textures/NPC/74.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/74.png - -#begin Textures/NPC/75.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/75.png - -#begin Textures/NPC/76.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/76.png - -#begin Textures/NPC/77.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/77.png - -#begin Textures/NPC/78.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/78.png - -#begin Textures/NPC/79.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/79.png - -#begin Textures/NPC/80.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/80.png - -#begin Textures/NPC/81.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/81.png - -#begin Textures/NPC/83.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/83.png - -#begin Textures/NPC/84.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/84.png - -#begin Textures/NPC/82.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/82.png - -#begin Textures/NPC/Archer.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Archer.png - -#begin Sounds/itemfinder.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/itemfinder.mp3 - -#begin Textures/NPC/Mary.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Mary.png - -#begin Textures/blackthorn.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/blackthorn.png - -#begin Textures/Weather/sand.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Weather/sand.png - -#begin Textures/Emblem/eggsplosion.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/eggsplosion.png - -#begin Textures/Gate.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Gate.png - -#begin Textures/Shrine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Shrine.png - -#begin Textures/NPC/Clair.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Clair.png - -#begin Textures/NPC/Flame.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Flame.png - -#begin GUI/Overworld/Rods.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Overworld/Rods.png - -#begin Pokemon/Overworld/Normal/280.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/280.png - -#begin Pokemon/Overworld/Normal/281.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/281.png - -#begin Pokemon/Overworld/Normal/282.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/282.png - -#begin Pokemon/Overworld/Normal/298.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/298.png - -#begin Pokemon/Overworld/Normal/360.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/360.png - -#begin Pokemon/Overworld/Normal/382.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/382.png - -#begin Pokemon/Overworld/Normal/383.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/383.png - -#begin Pokemon/Overworld/Normal/384.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/384.png - -#begin Pokemon/Overworld/Normal/424.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/424.png - -#begin Pokemon/Overworld/Normal/429.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/429.png - -#begin Pokemon/Overworld/Normal/430.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/430.png - -#begin Pokemon/Overworld/Normal/438.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/438.png - -#begin Pokemon/Overworld/Normal/439.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/439.png - -#begin Pokemon/Overworld/Normal/440.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/440.png - -#begin Pokemon/Overworld/Normal/446.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/446.png - -#begin Pokemon/Overworld/Normal/447.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/447.png - -#begin Pokemon/Overworld/Normal/448.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/448.png - -#begin Pokemon/Overworld/Normal/458.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/458.png - -#begin Pokemon/Overworld/Normal/461.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/461.png - -#begin Pokemon/Overworld/Normal/462.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/462.png - -#begin Pokemon/Overworld/Normal/463.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/463.png - -#begin Pokemon/Overworld/Normal/464.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/464.png - -#begin Pokemon/Overworld/Normal/465.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/465.png - -#begin Pokemon/Overworld/Normal/466.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/466.png - -#begin Pokemon/Overworld/Normal/467.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/467.png - -#begin Pokemon/Overworld/Normal/468.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/468.png - -#begin Pokemon/Overworld/Normal/469.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/469.png - -#begin Pokemon/Overworld/Normal/470.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/470.png - -#begin Pokemon/Overworld/Normal/471.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/471.png - -#begin Pokemon/Overworld/Normal/472.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/472.png - -#begin Pokemon/Overworld/Normal/473.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/473.png - -#begin Pokemon/Overworld/Normal/474.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/474.png - -#begin Pokemon/Overworld/Normal/475.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/475.png - -#begin Pokemon/Overworld/Normal/476.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/476.png - -#begin Pokemon/Overworld/Normal/477.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/477.png - -#begin Pokemon/Overworld/Normal/478.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/478.png - -#begin Pokemon/Overworld/Shiny/280.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/280.png - -#begin Pokemon/Overworld/Shiny/281.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/281.png - -#begin Pokemon/Overworld/Shiny/282.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/282.png - -#begin Pokemon/Overworld/Shiny/298.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/298.png - -#begin Pokemon/Overworld/Shiny/360.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/360.png - -#begin Pokemon/Overworld/Shiny/382.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/382.png - -#begin Pokemon/Overworld/Shiny/383.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/383.png - -#begin Pokemon/Overworld/Shiny/384.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/384.png - -#begin Pokemon/Overworld/Shiny/424.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/424.png - -#begin Pokemon/Overworld/Shiny/429.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/429.png - -#begin Pokemon/Overworld/Shiny/430.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/430.png - -#begin Pokemon/Overworld/Shiny/438.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/438.png - -#begin Pokemon/Overworld/Shiny/439.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/439.png - -#begin Pokemon/Overworld/Shiny/440.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/440.png - -#begin Pokemon/Overworld/Shiny/446.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/446.png - -#begin Pokemon/Overworld/Shiny/447.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/447.png - -#begin Pokemon/Overworld/Shiny/448.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/448.png - -#begin Pokemon/Overworld/Shiny/458.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/458.png - -#begin Pokemon/Overworld/Shiny/461.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/461.png - -#begin Pokemon/Overworld/Shiny/462.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/462.png - -#begin Pokemon/Overworld/Shiny/463.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/463.png - -#begin Pokemon/Overworld/Shiny/464.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/464.png - -#begin Pokemon/Overworld/Shiny/465.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/465.png - -#begin Pokemon/Overworld/Shiny/466.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/466.png - -#begin Pokemon/Overworld/Shiny/467.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/467.png - -#begin Pokemon/Overworld/Shiny/468.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/468.png - -#begin Pokemon/Overworld/Shiny/469.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/469.png - -#begin Pokemon/Overworld/Shiny/470.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/470.png - -#begin Pokemon/Overworld/Shiny/471.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/471.png - -#begin Pokemon/Overworld/Shiny/472.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/472.png - -#begin Pokemon/Overworld/Shiny/473.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/473.png - -#begin Pokemon/Overworld/Shiny/474.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/474.png - -#begin Pokemon/Overworld/Shiny/475.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/475.png - -#begin Pokemon/Overworld/Shiny/476.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/476.png - -#begin Pokemon/Overworld/Shiny/477.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/477.png - -#begin Pokemon/Overworld/Shiny/478.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/478.png - -#begin Sounds/Cries/461.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/461.mp3 - -#begin Sounds/Cries/462.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/462.mp3 - -#begin Sounds/Cries/463.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/463.mp3 - -#begin Sounds/Cries/464.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/464.mp3 - -#begin Sounds/Cries/465.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/465.mp3 - -#begin Sounds/Cries/466.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/466.mp3 - -#begin Sounds/Cries/467.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/467.mp3 - -#begin Sounds/Cries/468.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/468.mp3 - -#begin Sounds/Cries/469.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/469.mp3 - -#begin Sounds/Cries/470.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/470.mp3 - -#begin Sounds/Cries/471.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/471.mp3 - -#begin Sounds/Cries/472.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/472.mp3 - -#begin Sounds/Cries/473.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/473.mp3 - -#begin Sounds/Cries/474.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/474.mp3 - -#begin Sounds/Cries/475.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/475.mp3 - -#begin Sounds/Cries/476.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/476.mp3 - -#begin Sounds/Cries/477.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/477.mp3 - -#begin Sounds/Cries/478.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/478.mp3 - -#begin Sounds/Cries/360.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/360.mp3 - -#begin Sounds/Cries/382.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/382.mp3 - -#begin Sounds/Cries/383.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/383.mp3 - -#begin Sounds/Cries/384.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/384.mp3 - -#begin Sounds/Cries/424.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/424.mp3 - -#begin Sounds/Cries/427.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/427.mp3 - -#begin Sounds/Cries/428.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/428.mp3 - -#begin Sounds/Cries/429.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/429.mp3 - -#begin Sounds/Cries/430.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/430.mp3 - -#begin Sounds/Cries/438.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/438.mp3 - -#begin Sounds/Cries/439.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/439.mp3 - -#begin Sounds/Cries/440.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/440.mp3 - -#begin Sounds/Cries/442.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/442.mp3 - -#begin Sounds/Cries/446.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/446.mp3 - -#begin Sounds/Cries/458.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/458.mp3 - -#begin Sounds/Cries/280.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/280.mp3 - -#begin Sounds/Cries/281.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/281.mp3 - -#begin Sounds/Cries/282.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/282.mp3 - -#begin Sounds/Cries/298.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/298.mp3 - -#begin Songs/dragonsden.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/dragonsden.mp3 - -#begin Songs/RouteMusic6.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic6.mp3 - -#begin GUI/Map/kanto_map.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Map/kanto_map.png - -#begin Effects/BlurEffect.fx -/importer:EffectImporter -/processor:EffectProcessor -/processorParam:DebugMode=Auto -/build:Effects/BlurEffect.fx - -#begin Songs/kvictoryroad.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/kvictoryroad.mp3 - -#begin Textures/Emblem/missingno.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/missingno.png - -#begin Effects/Shadow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Effects/Shadow.png - -#begin Textures/train.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/train.png - -#begin Songs/mart.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/mart.mp3 - -#begin Songs/champion_defeat.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/champion_defeat.mp3 - -#begin Songs/elite_defeat.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/elite_defeat.mp3 - -#begin Songs/eusine_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/eusine_encounter.mp3 - -#begin Songs/HallofFame.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/HallofFame.mp3 - -#begin Songs/johto_champion.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_champion.mp3 - -#begin Songs/Johto_champion_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/Johto_champion_intro.mp3 - -#begin Songs/johto_elite.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_elite.mp3 - -#begin Songs/johto_elite_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/johto_elite_intro.mp3 - -#begin Songs/mary_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/mary_encounter.mp3 - -#begin Songs/oak_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/oak_encounter.mp3 - -#begin Songs/ride.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/ride.mp3 - -#begin Songs/surf.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/surf.mp3 - -#begin GUI/Menus/GTS.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Menus/GTS.png - -#begin Songs/elmslab.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/elmslab.mp3 - -#begin Songs/intro/johto_rival_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/johto_rival_encounter.mp3 - -#begin Pokemon/Sprites/Abra.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Abra.png - -#begin Pokemon/Sprites/Aerodactyl.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Aerodactyl.png - -#begin Pokemon/Sprites/Aipom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Aipom.png - -#begin Pokemon/Sprites/Alakazam.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Alakazam.png - -#begin Pokemon/Sprites/Ambipom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ambipom.png - -#begin Pokemon/Sprites/Ampharos.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ampharos.png - -#begin Pokemon/Sprites/Arbok.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arbok.png - -#begin Pokemon/Sprites/Arcanine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arcanine.png - -#begin Pokemon/Sprites/Ariados.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ariados.png - -#begin Pokemon/Sprites/Articuno.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Articuno.png - -#begin Pokemon/Sprites/Azumarill.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Azumarill.png - -#begin Pokemon/Sprites/Azurill.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Azurill.png - -#begin Pokemon/Sprites/Bayleef.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bayleef.png - -#begin Pokemon/Sprites/Beedrill.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Beedrill.png - -#begin Pokemon/Sprites/Bellossom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bellossom.png - -#begin Pokemon/Sprites/Bellsprout.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bellsprout.png - -#begin Pokemon/Sprites/Blastoise.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Blastoise.png - -#begin Pokemon/Sprites/Blissey.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Blissey.png - -#begin Pokemon/Sprites/Bonsly.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bonsly.png - -#begin Pokemon/Sprites/Bulbasaur.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bulbasaur.png - -#begin Pokemon/Sprites/Butterfree.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Butterfree.png - -#begin Pokemon/Sprites/Caterpie.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Caterpie.png - -#begin Pokemon/Sprites/Celebi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Celebi.png - -#begin Pokemon/Sprites/Chansey.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Chansey.png - -#begin Pokemon/Sprites/Charizard.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Charizard.png - -#begin Pokemon/Sprites/Charmander.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Charmander.png - -#begin Pokemon/Sprites/Charmeleon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Charmeleon.png - -#begin Pokemon/Sprites/Chikorita.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Chikorita.png - -#begin Pokemon/Sprites/Chinchou.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Chinchou.png - -#begin Pokemon/Sprites/Clefable.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Clefable.png - -#begin Pokemon/Sprites/Clefairy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Clefairy.png - -#begin Pokemon/Sprites/Cleffa.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cleffa.png - -#begin Pokemon/Sprites/Cloyster.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cloyster.png - -#begin Pokemon/Sprites/Corsola.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Corsola.png - -#begin Pokemon/Sprites/Crobat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Crobat.png - -#begin Pokemon/Sprites/Croconaw.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Croconaw.png - -#begin Pokemon/Sprites/Cubone.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cubone.png - -#begin Pokemon/Sprites/Cyndaquil.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cyndaquil.png - -#begin Pokemon/Sprites/Delibird.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Delibird.png - -#begin Pokemon/Sprites/Dewgong.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dewgong.png - -#begin Pokemon/Sprites/Diglett.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Diglett.png - -#begin Pokemon/Sprites/Ditto.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ditto.png - -#begin Pokemon/Sprites/Dodrio.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dodrio.png - -#begin Pokemon/Sprites/Doduo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Doduo.png - -#begin Pokemon/Sprites/Donphan.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Donphan.png - -#begin Pokemon/Sprites/Dragonair.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dragonair.png - -#begin Pokemon/Sprites/Dragonite.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dragonite.png - -#begin Pokemon/Sprites/Dratini.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dratini.png - -#begin Pokemon/Sprites/Drowzee.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Drowzee.png - -#begin Pokemon/Sprites/Dugtrio.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dugtrio.png - -#begin Pokemon/Sprites/Dunsparce.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dunsparce.png - -#begin Pokemon/Sprites/Eevee.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Eevee.png - -#begin Pokemon/Sprites/Ekans.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ekans.png - -#begin Pokemon/Sprites/Electabuzz.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Electabuzz.png - -#begin Pokemon/Sprites/Electivire.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Electivire.png - -#begin Pokemon/Sprites/Electrode.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Electrode.png - -#begin Pokemon/Sprites/Elekid.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Elekid.png - -#begin Pokemon/Sprites/Entei.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Entei.png - -#begin Pokemon/Sprites/Espeon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Espeon.png - -#begin Pokemon/Sprites/Exeggcute.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Exeggcute.png - -#begin Pokemon/Sprites/Exeggutor.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Exeggutor.png - -#begin Pokemon/Sprites/Farfetch'd.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Farfetch'd.png - -#begin Pokemon/Sprites/Fearow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Fearow.png - -#begin Pokemon/Sprites/Feraligatr.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Feraligatr.png - -#begin Pokemon/Sprites/Flaaffy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Flaaffy.png - -#begin Pokemon/Sprites/Flareon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Flareon.png - -#begin Pokemon/Sprites/Forretress.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Forretress.png - -#begin Pokemon/Sprites/Furret.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Furret.png - -#begin Pokemon/Sprites/Gallade.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gallade.png - -#begin Pokemon/Sprites/Gardevoir.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gardevoir.png - -#begin Pokemon/Sprites/Gastly.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gastly.png - -#begin Pokemon/Sprites/Gengar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gengar.png - -#begin Pokemon/Sprites/Geodude.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Geodude.png - -#begin Pokemon/Sprites/Girafarig.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Girafarig.png - -#begin Pokemon/Sprites/Glaceon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Glaceon.png - -#begin Pokemon/Sprites/Gligar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gligar.png - -#begin Pokemon/Sprites/Gliscor.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gliscor.png - -#begin Pokemon/Sprites/Gloom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gloom.png - -#begin Pokemon/Sprites/Golbat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Golbat.png - -#begin Pokemon/Sprites/Goldeen.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Goldeen.png - -#begin Pokemon/Sprites/Golduck.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Golduck.png - -#begin Pokemon/Sprites/Golem.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Golem.png - -#begin Pokemon/Sprites/Granbull.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Granbull.png - -#begin Pokemon/Sprites/Graveler.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Graveler.png - -#begin Pokemon/Sprites/Grimer.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Grimer.png - -#begin Pokemon/Sprites/Groudon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Groudon.png - -#begin Pokemon/Sprites/Growlithe.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Growlithe.png - -#begin Pokemon/Sprites/Gyarados.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gyarados.png - -#begin Pokemon/Sprites/Happiny.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Happiny.png - -#begin Pokemon/Sprites/Haunter.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Haunter.png - -#begin Pokemon/Sprites/Heracross.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Heracross.png - -#begin Pokemon/Sprites/Hitmonchan.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Hitmonchan.png - -#begin Pokemon/Sprites/Hitmonlee.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Hitmonlee.png - -#begin Pokemon/Sprites/Hitmontop.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Hitmontop.png - -#begin Pokemon/Sprites/Ho-Oh.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ho-Oh.png - -#begin Pokemon/Sprites/Honchkrow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Honchkrow.png - -#begin Pokemon/Sprites/Hoothoot.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Hoothoot.png - -#begin Pokemon/Sprites/Hoppip.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Hoppip.png - -#begin Pokemon/Sprites/Horsea.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Horsea.png - -#begin Pokemon/Sprites/Houndoom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Houndoom.png - -#begin Pokemon/Sprites/Houndour.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Houndour.png - -#begin Pokemon/Sprites/Hypno.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Hypno.png - -#begin Pokemon/Sprites/Igglybuff.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Igglybuff.png - -#begin Pokemon/Sprites/Ivysaur.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ivysaur.png - -#begin Pokemon/Sprites/Jigglypuff.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Jigglypuff.png - -#begin Pokemon/Sprites/Jolteon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Jolteon.png - -#begin Pokemon/Sprites/Jumpluff.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Jumpluff.png - -#begin Pokemon/Sprites/Jynx.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Jynx.png - -#begin Pokemon/Sprites/Kabuto.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kabuto.png - -#begin Pokemon/Sprites/Kabutops.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kabutops.png - -#begin Pokemon/Sprites/Kadabra.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kadabra.png - -#begin Pokemon/Sprites/Kakuna.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kakuna.png - -#begin Pokemon/Sprites/Kangaskhan.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kangaskhan.png - -#begin Pokemon/Sprites/Kingdra.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kingdra.png - -#begin Pokemon/Sprites/Kingler.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kingler.png - -#begin Pokemon/Sprites/Kirlia.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kirlia.png - -#begin Pokemon/Sprites/Koffing.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Koffing.png - -#begin Pokemon/Sprites/Krabby.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Krabby.png - -#begin Pokemon/Sprites/Kyogre.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kyogre.png - -#begin Pokemon/Sprites/Lanturn.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lanturn.png - -#begin Pokemon/Sprites/Lapras.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lapras.png - -#begin Pokemon/Sprites/Larvitar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Larvitar.png - -#begin Pokemon/Sprites/Leafeon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Leafeon.png - -#begin Pokemon/Sprites/Ledian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ledian.png - -#begin Pokemon/Sprites/Ledyba.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ledyba.png - -#begin Pokemon/Sprites/Lickilicky.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lickilicky.png - -#begin Pokemon/Sprites/Lickitung.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lickitung.png - -#begin Pokemon/Sprites/Lucario.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lucario.png - -#begin Pokemon/Sprites/Lugia.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lugia.png - -#begin Pokemon/Sprites/Machamp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Machamp.png - -#begin Pokemon/Sprites/Machoke.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Machoke.png - -#begin Pokemon/Sprites/Machop.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Machop.png - -#begin Pokemon/Sprites/Magby.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Magby.png - -#begin Pokemon/Sprites/Magcargo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Magcargo.png - -#begin Pokemon/Sprites/Magikarp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Magikarp.png - -#begin Pokemon/Sprites/Magmar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Magmar.png - -#begin Pokemon/Sprites/Magmortar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Magmortar.png - -#begin Pokemon/Sprites/Magnemite.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Magnemite.png - -#begin Pokemon/Sprites/Magneton.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Magneton.png - -#begin Pokemon/Sprites/Magnezone.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Magnezone.png - -#begin Pokemon/Sprites/Mamoswine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mamoswine.png - -#begin Pokemon/Sprites/Mankey.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mankey.png - -#begin Pokemon/Sprites/Mantine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mantine.png - -#begin Pokemon/Sprites/Mantyke.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mantyke.png - -#begin Pokemon/Sprites/Mareep.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mareep.png - -#begin Pokemon/Sprites/Marill.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Marill.png - -#begin Pokemon/Sprites/Marowak.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Marowak.png - -#begin Pokemon/Sprites/Meganium.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Meganium.png - -#begin Pokemon/Sprites/Meowth.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Meowth.png - -#begin Pokemon/Sprites/Metapod.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Metapod.png - -#begin Pokemon/Sprites/Mew.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mew.png - -#begin Pokemon/Sprites/Mewtwo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mewtwo.png - -#begin Pokemon/Sprites/Miltank.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Miltank.png - -#begin Pokemon/Sprites/Mime Jr..png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mime Jr..png - -#begin Pokemon/Sprites/Misdreavus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Misdreavus.png - -#begin Pokemon/Sprites/Mismagius.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mismagius.png - -#begin Pokemon/Sprites/Moltres.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Moltres.png - -#begin Pokemon/Sprites/Mr. Mime.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mr. Mime.png - -#begin Pokemon/Sprites/Muk.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Muk.png - -#begin Pokemon/Sprites/Munchlax.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Munchlax.png - -#begin Pokemon/Sprites/Murkrow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Murkrow.png - -#begin Pokemon/Sprites/Natu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Natu.png - -#begin Pokemon/Sprites/Nidoking.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Nidoking.png - -#begin Pokemon/Sprites/Nidoqueen.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Nidoqueen.png - -#begin Pokemon/Sprites/Nidoran_f.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Nidoran_f.png - -#begin Pokemon/Sprites/Nidoran_m.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Nidoran_m.png - -#begin Pokemon/Sprites/Nidorina.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Nidorina.png - -#begin Pokemon/Sprites/Nidorino.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Nidorino.png - -#begin Pokemon/Sprites/Ninetales.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ninetales.png - -#begin Pokemon/Sprites/Noctowl.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Noctowl.png - -#begin Pokemon/Sprites/Octillery.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Octillery.png - -#begin Pokemon/Sprites/Oddish.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Oddish.png - -#begin Pokemon/Sprites/Omanyte.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Omanyte.png - -#begin Pokemon/Sprites/Omastar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Omastar.png - -#begin Pokemon/Sprites/Onix.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Onix.png - -#begin Pokemon/Sprites/Paras.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Paras.png - -#begin Pokemon/Sprites/Parasect.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Parasect.png - -#begin Pokemon/Sprites/Persian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Persian.png - -#begin Pokemon/Sprites/Phanpy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Phanpy.png - -#begin Pokemon/Sprites/Pichu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pichu.png - -#begin Pokemon/Sprites/Pidgeot.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pidgeot.png - -#begin Pokemon/Sprites/Pidgeotto.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pidgeotto.png - -#begin Pokemon/Sprites/Pidgey.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pidgey.png - -#begin Pokemon/Sprites/Pikachu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pikachu.png - -#begin Pokemon/Sprites/Piloswine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Piloswine.png - -#begin Pokemon/Sprites/Pineco.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pineco.png - -#begin Pokemon/Sprites/Pinsir.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pinsir.png - -#begin Pokemon/Sprites/Politoed.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Politoed.png - -#begin Pokemon/Sprites/Poliwag.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Poliwag.png - -#begin Pokemon/Sprites/Poliwhirl.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Poliwhirl.png - -#begin Pokemon/Sprites/Poliwrath.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Poliwrath.png - -#begin Pokemon/Sprites/Ponyta.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ponyta.png - -#begin Pokemon/Sprites/Porygon-Z.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Porygon-Z.png - -#begin Pokemon/Sprites/Porygon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Porygon.png - -#begin Pokemon/Sprites/Porygon2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Porygon2.png - -#begin Pokemon/Sprites/Primeape.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Primeape.png - -#begin Pokemon/Sprites/Psyduck.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Psyduck.png - -#begin Pokemon/Sprites/Pupitar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pupitar.png - -#begin Pokemon/Sprites/Quagsire.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Quagsire.png - -#begin Pokemon/Sprites/Quilava.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Quilava.png - -#begin Pokemon/Sprites/Qwilfish.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Qwilfish.png - -#begin Pokemon/Sprites/Raichu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Raichu.png - -#begin Pokemon/Sprites/Raikou.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Raikou.png - -#begin Pokemon/Sprites/Ralts.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ralts.png - -#begin Pokemon/Sprites/Rapidash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rapidash.png - -#begin Pokemon/Sprites/Raticate.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Raticate.png - -#begin Pokemon/Sprites/Rattata.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rattata.png - -#begin Pokemon/Sprites/Rayquaza.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rayquaza.png - -#begin Pokemon/Sprites/Remoraid.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Remoraid.png - -#begin Pokemon/Sprites/Rhydon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rhydon.png - -#begin Pokemon/Sprites/Rhyhorn.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rhyhorn.png - -#begin Pokemon/Sprites/Rhyperior.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rhyperior.png - -#begin Pokemon/Sprites/Riolu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Riolu.png - -#begin Pokemon/Sprites/Sandshrew.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sandshrew.png - -#begin Pokemon/Sprites/Sandslash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sandslash.png - -#begin Pokemon/Sprites/Scizor.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Scizor.png - -#begin Pokemon/Sprites/Scyther.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Scyther.png - -#begin Pokemon/Sprites/Seadra.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Seadra.png - -#begin Pokemon/Sprites/Seaking.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Seaking.png - -#begin Pokemon/Sprites/Seel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Seel.png - -#begin Pokemon/Sprites/Sentret.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sentret.png - -#begin Pokemon/Sprites/Shellder.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shellder.png - -#begin Pokemon/Sprites/Shuckle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shuckle.png - -#begin Pokemon/Sprites/Skarmory.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Skarmory.png - -#begin Pokemon/Sprites/Skiploom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Skiploom.png - -#begin Pokemon/Sprites/Slowbro.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Slowbro.png - -#begin Pokemon/Sprites/Slowking.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Slowking.png - -#begin Pokemon/Sprites/Slowpoke.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Slowpoke.png - -#begin Pokemon/Sprites/Slugma.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Slugma.png - -#begin Pokemon/Sprites/Smeargle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Smeargle.png - -#begin Pokemon/Sprites/Smoochum.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Smoochum.png - -#begin Pokemon/Sprites/Sneasel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sneasel.png - -#begin Pokemon/Sprites/Snorlax.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Snorlax.png - -#begin Pokemon/Sprites/Snubbull.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Snubbull.png - -#begin Pokemon/Sprites/Spearow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Spearow.png - -#begin Pokemon/Sprites/Spinarak.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Spinarak.png - -#begin Pokemon/Sprites/Squirtle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Squirtle.png - -#begin Pokemon/Sprites/Stantler.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Stantler.png - -#begin Pokemon/Sprites/Starmie.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Starmie.png - -#begin Pokemon/Sprites/Staryu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Staryu.png - -#begin Pokemon/Sprites/Steelix.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Steelix.png - -#begin Pokemon/Sprites/Sudowoodo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sudowoodo.png - -#begin Pokemon/Sprites/Suicune.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Suicune.png - -#begin Pokemon/Sprites/Sunflora.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sunflora.png - -#begin Pokemon/Sprites/Sunkern.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sunkern.png - -#begin Pokemon/Sprites/Swinub.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Swinub.png - -#begin Pokemon/Sprites/Sylveon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sylveon.png - -#begin Pokemon/Sprites/Tangela.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tangela.png - -#begin Pokemon/Sprites/Tangrowth.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tangrowth.png - -#begin Pokemon/Sprites/Tauros.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tauros.png - -#begin Pokemon/Sprites/Teddiursa.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Teddiursa.png - -#begin Pokemon/Sprites/Tentacool.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tentacool.png - -#begin Pokemon/Sprites/Tentacruel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tentacruel.png - -#begin Pokemon/Sprites/Togekiss.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Togekiss.png - -#begin Pokemon/Sprites/Togepi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Togepi.png - -#begin Pokemon/Sprites/Togetic.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Togetic.png - -#begin Pokemon/Sprites/Totodile.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Totodile.png - -#begin Pokemon/Sprites/Typhlosion.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Typhlosion.png - -#begin Pokemon/Sprites/Tyranitar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tyranitar.png - -#begin Pokemon/Sprites/Tyrogue.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tyrogue.png - -#begin Pokemon/Sprites/Umbreon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Umbreon.png - -#begin Pokemon/Sprites/Unown.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown.png - -#begin Pokemon/Sprites/Unown_b.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_b.png - -#begin Pokemon/Sprites/Unown_c.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_c.png - -#begin Pokemon/Sprites/Unown_d.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_d.png - -#begin Pokemon/Sprites/Unown_e.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_e.png - -#begin Pokemon/Sprites/Unown_exclamation.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_exclamation.png - -#begin Pokemon/Sprites/Unown_f.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_f.png - -#begin Pokemon/Sprites/Unown_g.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_g.png - -#begin Pokemon/Sprites/Unown_h.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_h.png - -#begin Pokemon/Sprites/Unown_i.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_i.png - -#begin Pokemon/Sprites/Unown_j.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_j.png - -#begin Pokemon/Sprites/Unown_k.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_k.png - -#begin Pokemon/Sprites/Unown_l.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_l.png - -#begin Pokemon/Sprites/Unown_m.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_m.png - -#begin Pokemon/Sprites/Unown_n.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_n.png - -#begin Pokemon/Sprites/Unown_o.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_o.png - -#begin Pokemon/Sprites/Unown_p.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_p.png - -#begin Pokemon/Sprites/Unown_q.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_q.png - -#begin Pokemon/Sprites/Unown_question.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_question.png - -#begin Pokemon/Sprites/Unown_r.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_r.png - -#begin Pokemon/Sprites/Unown_s.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_s.png - -#begin Pokemon/Sprites/Unown_t.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_t.png - -#begin Pokemon/Sprites/Unown_u.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_u.png - -#begin Pokemon/Sprites/Unown_v.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_v.png - -#begin Pokemon/Sprites/Unown_w.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_w.png - -#begin Pokemon/Sprites/Unown_x.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_x.png - -#begin Pokemon/Sprites/Unown_y.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_y.png - -#begin Pokemon/Sprites/Unown_z.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unown_z.png - -#begin Pokemon/Sprites/Ursaring.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ursaring.png - -#begin Pokemon/Sprites/Vaporeon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Vaporeon.png - -#begin Pokemon/Sprites/Venomoth.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Venomoth.png - -#begin Pokemon/Sprites/Venonat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Venonat.png - -#begin Pokemon/Sprites/Venusaur.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Venusaur.png - -#begin Pokemon/Sprites/Victreebel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Victreebel.png - -#begin Pokemon/Sprites/Vileplume.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Vileplume.png - -#begin Pokemon/Sprites/Voltorb.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Voltorb.png - -#begin Pokemon/Sprites/Vulpix.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Vulpix.png - -#begin Pokemon/Sprites/Wartortle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wartortle.png - -#begin Pokemon/Sprites/Weavile.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Weavile.png - -#begin Pokemon/Sprites/Weedle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Weedle.png - -#begin Pokemon/Sprites/Weepinbell.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Weepinbell.png - -#begin Pokemon/Sprites/Weezing.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Weezing.png - -#begin Pokemon/Sprites/Wigglytuff.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wigglytuff.png - -#begin Pokemon/Sprites/Wobbuffet.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wobbuffet.png - -#begin Pokemon/Sprites/Wooper.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wooper.png - -#begin Pokemon/Sprites/Wynaut.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wynaut.png - -#begin Pokemon/Sprites/Xatu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Xatu.png - -#begin Pokemon/Sprites/Yanma.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Yanma.png - -#begin Pokemon/Sprites/Yanmega.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Yanmega.png - -#begin Pokemon/Sprites/Zapdos.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Zapdos.png - -#begin Pokemon/Sprites/Zubat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Zubat.png - -#begin GUI/GamePad/xboxControllerButtonA.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerButtonA.tga - -#begin GUI/GamePad/xboxControllerButtonB.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerButtonB.tga - -#begin GUI/GamePad/xboxControllerButtonX.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerButtonX.tga - -#begin GUI/GamePad/xboxControllerButtonY.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerButtonY.tga - -#begin GUI/GamePad/xboxControllerLeftShoulder.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerLeftShoulder.tga - -#begin GUI/GamePad/xboxControllerLeftThumbstick.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerLeftThumbstick.tga - -#begin GUI/GamePad/xboxControllerLeftTrigger.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerLeftTrigger.tga - -#begin GUI/GamePad/xboxControllerRightShoulder.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerRightShoulder.tga - -#begin GUI/GamePad/xboxControllerRightThumbstick.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerRightThumbstick.tga - -#begin GUI/GamePad/xboxControllerRightTrigger.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerRightTrigger.tga - -#begin GUI/GamePad/xboxControllerStart.tga -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/GamePad/xboxControllerStart.tga - -#begin Effects/DiffuseShader.fx -/importer:EffectImporter -/processor:EffectProcessor -/processorParam:DebugMode=Auto -/build:Effects/DiffuseShader.fx - -#begin Effects/Toon.fx -/importer:EffectImporter -/processor:EffectProcessor -/processorParam:DebugMode=Auto -/build:Effects/Toon.fx - -#begin Models/boat/Ship.X -/importer:XImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/boat/Ship.X - -#begin Models/boat/ferry.X -/importer:XImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/boat/ferry.X - -#begin Models/boat2/Boat.fbx -/importer:FbxImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/boat2/Boat.fbx - -#begin Models/Environment/Test_floor/Test_floor.X -/importer:XImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/Environment/Test_floor/Test_floor.X - -#begin Models/Environment/arena_colleseum.X -/importer:XImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/Environment/arena_colleseum.X - -#begin Models/Environment/MtSilver/Mountain.x -/importer:XImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/Environment/MtSilver/Mountain.x - -#begin Models/building/P3DBuilding.x -/importer:XImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/building/P3DBuilding.x - -#begin Models/Snorlax/Shiny.x -/importer:XImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/Snorlax/Shiny.x - -#begin Models/Snorlax/Normal.x -/importer:XImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/Snorlax/Normal.x - -#begin SkyDomeResource/SkyDome.x -/importer:XImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:SkyDomeResource/SkyDome.x - -#begin Models/truck/truck.x -/importer:XImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/truck/truck.x - -#begin Songs/intro/johto_wild.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/johto_wild.mp3 - -#begin GUI/Map/sevii islands_map.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Map/sevii islands_map.png - -#begin Textures/NPC/captain.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/captain.png - -#begin Songs/intro/ssaqua.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/ssaqua.mp3 - -#begin Songs/ssaqua.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/ssaqua.mp3 - -#begin Sounds/Cries/447.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/447.mp3 - -#begin Sounds/Cries/448.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/448.mp3 - -#begin Sounds/Cries/253.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/253.mp3 - -#begin Sounds/Cries/254.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/254.mp3 - -#begin Sounds/Cries/255.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/255.mp3 - -#begin Sounds/Cries/256.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/256.mp3 - -#begin Sounds/Cries/257.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/257.mp3 - -#begin Sounds/Cries/258.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/258.mp3 - -#begin Sounds/Cries/259.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/259.mp3 - -#begin Sounds/Cries/260.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/260.mp3 - -#begin Sounds/Cries/387.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/387.mp3 - -#begin Sounds/Cries/388.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/388.mp3 - -#begin Sounds/Cries/389.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/389.mp3 - -#begin Sounds/Cries/390.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/390.mp3 - -#begin Sounds/Cries/391.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/391.mp3 - -#begin Sounds/Cries/392.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/392.mp3 - -#begin Sounds/Cries/393.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/393.mp3 - -#begin Sounds/Cries/394.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/394.mp3 - -#begin Sounds/Cries/395.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/395.mp3 - -#begin Sounds/Cries/495.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/495.mp3 - -#begin Sounds/Cries/496.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/496.mp3 - -#begin Sounds/Cries/497.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/497.mp3 - -#begin Sounds/Cries/498.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/498.mp3 - -#begin Sounds/Cries/499.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/499.mp3 - -#begin Sounds/Cries/500.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/500.mp3 - -#begin Sounds/Cries/501.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/501.mp3 - -#begin Sounds/Cries/502.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/502.mp3 - -#begin Sounds/Cries/503.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/503.mp3 - -#begin Pokemon/Sprites/Blaziken.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Blaziken.png - -#begin Pokemon/Sprites/Chimchar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Chimchar.png - -#begin Pokemon/Sprites/Combusken.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Combusken.png - -#begin Pokemon/Sprites/Dewott.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dewott.png - -#begin Pokemon/Sprites/Emboar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Emboar.png - -#begin Pokemon/Sprites/Empoleon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Empoleon.png - -#begin Pokemon/Sprites/Grotle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Grotle.png - -#begin Pokemon/Sprites/Grovyle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Grovyle.png - -#begin Pokemon/Sprites/Infernape.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Infernape.png - -#begin Pokemon/Sprites/Marshtomp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Marshtomp.png - -#begin Pokemon/Sprites/Monferno.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Monferno.png - -#begin Pokemon/Sprites/Mudkip.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mudkip.png - -#begin Pokemon/Sprites/Oshawott.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Oshawott.png - -#begin Pokemon/Sprites/Pignite.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pignite.png - -#begin Pokemon/Sprites/Piplup.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Piplup.png - -#begin Pokemon/Sprites/Prinplup.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Prinplup.png - -#begin Pokemon/Sprites/Samurott.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Samurott.png - -#begin Pokemon/Sprites/Sceptile.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sceptile.png - -#begin Pokemon/Sprites/Serperior.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Serperior.png - -#begin Pokemon/Sprites/Servine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Servine.png - -#begin Pokemon/Sprites/Snivy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Snivy.png - -#begin Pokemon/Sprites/Swampert.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Swampert.png - -#begin Pokemon/Sprites/Tepig.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tepig.png - -#begin Pokemon/Sprites/Torchic.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Torchic.png - -#begin Pokemon/Sprites/Torterra.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Torterra.png - -#begin Pokemon/Sprites/Treecko.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Treecko.png - -#begin Pokemon/Sprites/Turtwig.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Turtwig.png - -#begin Pokemon/Overworld/Normal/252.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/252.png - -#begin Pokemon/Overworld/Normal/253.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/253.png - -#begin Pokemon/Overworld/Normal/254.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/254.png - -#begin Pokemon/Overworld/Normal/255.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/255.png - -#begin Pokemon/Overworld/Normal/256.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/256.png - -#begin Pokemon/Overworld/Normal/257.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/257.png - -#begin Pokemon/Overworld/Normal/258.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/258.png - -#begin Pokemon/Overworld/Normal/259.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/259.png - -#begin Pokemon/Overworld/Normal/260.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/260.png - -#begin Pokemon/Overworld/Normal/387.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/387.png - -#begin Pokemon/Overworld/Normal/388.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/388.png - -#begin Pokemon/Overworld/Normal/389.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/389.png - -#begin Pokemon/Overworld/Normal/390.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/390.png - -#begin Pokemon/Overworld/Normal/391.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/391.png - -#begin Pokemon/Overworld/Normal/392.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/392.png - -#begin Pokemon/Overworld/Normal/393.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/393.png - -#begin Pokemon/Overworld/Normal/394.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/394.png - -#begin Pokemon/Overworld/Normal/395.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/395.png - -#begin Pokemon/Overworld/Normal/495.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/495.png - -#begin Pokemon/Overworld/Normal/496.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/496.png - -#begin Pokemon/Overworld/Normal/497.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/497.png - -#begin Pokemon/Overworld/Normal/498.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/498.png - -#begin Pokemon/Overworld/Normal/499.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/499.png - -#begin Pokemon/Overworld/Normal/500.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/500.png - -#begin Pokemon/Overworld/Normal/501.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/501.png - -#begin Pokemon/Overworld/Normal/502.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/502.png - -#begin Pokemon/Overworld/Normal/503.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/503.png - -#begin Pokemon/Overworld/Shiny/252.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/252.png - -#begin Pokemon/Overworld/Shiny/253.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/253.png - -#begin Pokemon/Overworld/Shiny/254.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/254.png - -#begin Pokemon/Overworld/Shiny/255.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/255.png - -#begin Pokemon/Overworld/Shiny/256.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/256.png - -#begin Pokemon/Overworld/Shiny/257.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/257.png - -#begin Pokemon/Overworld/Shiny/258.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/258.png - -#begin Pokemon/Overworld/Shiny/259.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/259.png - -#begin Pokemon/Overworld/Shiny/260.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/260.png - -#begin Pokemon/Overworld/Shiny/387.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/387.png - -#begin Pokemon/Overworld/Shiny/388.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/388.png - -#begin Pokemon/Overworld/Shiny/389.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/389.png - -#begin Pokemon/Overworld/Shiny/390.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/390.png - -#begin Pokemon/Overworld/Shiny/391.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/391.png - -#begin Pokemon/Overworld/Shiny/392.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/392.png - -#begin Pokemon/Overworld/Shiny/393.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/393.png - -#begin Pokemon/Overworld/Shiny/394.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/394.png - -#begin Pokemon/Overworld/Shiny/395.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/395.png - -#begin Pokemon/Overworld/Shiny/495.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/495.png - -#begin Pokemon/Overworld/Shiny/496.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/496.png - -#begin Pokemon/Overworld/Shiny/497.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/497.png - -#begin Pokemon/Overworld/Shiny/498.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/498.png - -#begin Pokemon/Overworld/Shiny/499.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/499.png - -#begin Pokemon/Overworld/Shiny/500.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/500.png - -#begin Pokemon/Overworld/Shiny/501.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/501.png - -#begin Pokemon/Overworld/Shiny/502.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/502.png - -#begin Pokemon/Overworld/Shiny/503.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/503.png - -#begin Sounds/Cries/252.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/252.mp3 - -#begin Songs/gts.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/gts.mp3 - -#begin Songs/intro/gts.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/gts.mp3 - -#begin GUI/Battle/WeatherIcons.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Battle/WeatherIcons.png - -#begin Textures/Emblem/mailman.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/mailman.png - -#begin Textures/ModelViewer/Ground.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/ModelViewer/Ground.png - -#begin SkyDomeResource/Forest.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/Forest.png - -#begin Sounds/Cries/270.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/270.mp3 - -#begin Sounds/Cries/271.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/271.mp3 - -#begin Sounds/Cries/272.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/272.mp3 - -#begin Sounds/Cries/287.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/287.mp3 - -#begin Sounds/Cries/288.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/288.mp3 - -#begin Sounds/Cries/289.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/289.mp3 - -#begin Sounds/Cries/322.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/322.mp3 - -#begin Sounds/Cries/323.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/323.mp3 - -#begin Sounds/Cries/324.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/324.mp3 - -#begin Sounds/Cries/327.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/327.mp3 - -#begin Sounds/Cries/328.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/328.mp3 - -#begin Sounds/Cries/329.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/329.mp3 - -#begin Sounds/Cries/330.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/330.mp3 - -#begin Sounds/Cries/331.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/331.mp3 - -#begin Sounds/Cries/332.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/332.mp3 - -#begin Sounds/Cries/335.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/335.mp3 - -#begin Sounds/Cries/336.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/336.mp3 - -#begin Sounds/Cries/357.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/357.mp3 - -#begin Sounds/Cries/369.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/369.mp3 - -#begin Sounds/Cries/449.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/449.mp3 - -#begin Sounds/Cries/450.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/450.mp3 - -#begin Sounds/Cries/453.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/453.mp3 - -#begin Sounds/Cries/454.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/454.mp3 - -#begin Sounds/Cries/551.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/551.mp3 - -#begin Sounds/Cries/552.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/552.mp3 - -#begin Sounds/Cries/553.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/553.mp3 - -#begin Sounds/Cries/556.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/556.mp3 - -#begin Sounds/Cries/626.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/626.mp3 - -#begin Sounds/Cries/627.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/627.mp3 - -#begin Sounds/Cries/628.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/628.mp3 - -#begin Pokemon/Sprites/Bouffalant.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bouffalant.png - -#begin Pokemon/Sprites/Braviary.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Braviary.png - -#begin Pokemon/Sprites/Cacnea.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cacnea.png - -#begin Pokemon/Sprites/Cacturne.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cacturne.png - -#begin Pokemon/Sprites/Camerupt.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Camerupt.png - -#begin Pokemon/Sprites/Croagunk.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Croagunk.png - -#begin Pokemon/Sprites/Flygon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Flygon.png - -#begin Pokemon/Sprites/Hippopotas.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Hippopotas.png - -#begin Pokemon/Sprites/Hippowdon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Hippowdon.png - -#begin Pokemon/Sprites/Krokorok.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Krokorok.png - -#begin Pokemon/Sprites/Krookodile.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Krookodile.png - -#begin Pokemon/Sprites/Lombre.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lombre.png - -#begin Pokemon/Sprites/Lotad.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lotad.png - -#begin Pokemon/Sprites/Ludicolo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ludicolo.png - -#begin Pokemon/Sprites/Maractus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Maractus.png - -#begin Pokemon/Sprites/Numel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Numel.png - -#begin Pokemon/Sprites/Relicanth.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Relicanth.png - -#begin Pokemon/Sprites/Rufflet.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rufflet.png - -#begin Pokemon/Sprites/Sandile.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sandile.png - -#begin Pokemon/Sprites/Seviper.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Seviper.png - -#begin Pokemon/Sprites/Slaking.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Slaking.png - -#begin Pokemon/Sprites/Slakoth.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Slakoth.png - -#begin Pokemon/Sprites/Spinda.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Spinda.png - -#begin Pokemon/Sprites/Torkoal.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Torkoal.png - -#begin Pokemon/Sprites/Toxicroak.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Toxicroak.png - -#begin Pokemon/Sprites/Trapinch.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Trapinch.png - -#begin Pokemon/Sprites/Tropius.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tropius.png - -#begin Pokemon/Sprites/Vibrava.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Vibrava.png - -#begin Pokemon/Sprites/Vigoroth.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Vigoroth.png - -#begin Pokemon/Sprites/Zangoose.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Zangoose.png - -#begin Pokemon/Overworld/Normal/270.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/270.png - -#begin Pokemon/Overworld/Normal/271.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/271.png - -#begin Pokemon/Overworld/Normal/272.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/272.png - -#begin Pokemon/Overworld/Normal/287.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/287.png - -#begin Pokemon/Overworld/Normal/288.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/288.png - -#begin Pokemon/Overworld/Normal/289.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/289.png - -#begin Pokemon/Overworld/Normal/322.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/322.png - -#begin Pokemon/Overworld/Normal/323.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/323.png - -#begin Pokemon/Overworld/Normal/324.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/324.png - -#begin Pokemon/Overworld/Normal/327.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/327.png - -#begin Pokemon/Overworld/Normal/328.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/328.png - -#begin Pokemon/Overworld/Normal/329.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/329.png - -#begin Pokemon/Overworld/Normal/330.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/330.png - -#begin Pokemon/Overworld/Normal/331.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/331.png - -#begin Pokemon/Overworld/Normal/332.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/332.png - -#begin Pokemon/Overworld/Normal/335.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/335.png - -#begin Pokemon/Overworld/Normal/336.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/336.png - -#begin Pokemon/Overworld/Normal/357.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/357.png - -#begin Pokemon/Overworld/Normal/369.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/369.png - -#begin Pokemon/Overworld/Normal/449.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/449.png - -#begin Pokemon/Overworld/Normal/450.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/450.png - -#begin Pokemon/Overworld/Normal/453.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/453.png - -#begin Pokemon/Overworld/Normal/454.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/454.png - -#begin Pokemon/Overworld/Normal/551.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/551.png - -#begin Pokemon/Overworld/Normal/552.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/552.png - -#begin Pokemon/Overworld/Normal/553.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/553.png - -#begin Pokemon/Overworld/Normal/556.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/556.png - -#begin Pokemon/Overworld/Normal/626.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/626.png - -#begin Pokemon/Overworld/Normal/627.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/627.png - -#begin Pokemon/Overworld/Normal/628.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/628.png - -#begin Pokemon/Overworld/Shiny/270.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/270.png - -#begin Pokemon/Overworld/Shiny/271.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/271.png - -#begin Pokemon/Overworld/Shiny/272.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/272.png - -#begin Pokemon/Overworld/Shiny/287.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/287.png - -#begin Pokemon/Overworld/Shiny/288.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/288.png - -#begin Pokemon/Overworld/Shiny/289.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/289.png - -#begin Pokemon/Overworld/Shiny/322.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/322.png - -#begin Pokemon/Overworld/Shiny/323.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/323.png - -#begin Pokemon/Overworld/Shiny/324.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/324.png - -#begin Pokemon/Overworld/Shiny/327.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/327.png - -#begin Pokemon/Overworld/Shiny/328.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/328.png - -#begin Pokemon/Overworld/Shiny/329.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/329.png - -#begin Pokemon/Overworld/Shiny/330.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/330.png - -#begin Pokemon/Overworld/Shiny/331.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/331.png - -#begin Pokemon/Overworld/Shiny/332.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/332.png - -#begin Pokemon/Overworld/Shiny/335.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/335.png - -#begin Pokemon/Overworld/Shiny/336.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/336.png - -#begin Pokemon/Overworld/Shiny/357.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/357.png - -#begin Pokemon/Overworld/Shiny/369.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/369.png - -#begin Pokemon/Overworld/Shiny/449.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/449.png - -#begin Pokemon/Overworld/Shiny/450.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/450.png - -#begin Pokemon/Overworld/Shiny/453.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/453.png - -#begin Pokemon/Overworld/Shiny/454.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/454.png - -#begin Pokemon/Overworld/Shiny/551.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/551.png - -#begin Pokemon/Overworld/Shiny/552.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/552.png - -#begin Pokemon/Overworld/Shiny/553.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/553.png - -#begin Pokemon/Overworld/Shiny/556.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/556.png - -#begin Pokemon/Overworld/Shiny/626.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/626.png - -#begin Pokemon/Overworld/Shiny/627.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/627.png - -#begin Pokemon/Overworld/Shiny/628.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/628.png - -#begin Pokemon/Sprites/Probopass.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Probopass.png - -#begin Textures/SafariGate.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/SafariGate.png - -#begin Songs/intro/safari.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/safari.mp3 - -#begin Songs/safari.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/safari.mp3 - -#begin Songs/safarigate.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/safarigate.mp3 - -#begin Textures/Safari.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Safari.png - -#begin Pokemon/Sprites/Froslass.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Froslass.png - -#begin Pokemon/Sprites/Dusknoir.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dusknoir.png - -#begin Sounds/pokeball_set.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/pokeball_set.mp3 - -#begin GUI/Trophies.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Trophies.png - -#begin Songs/bugcontest.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/bugcontest.mp3 - -#begin Songs/intro/bugcontest.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/bugcontest.mp3 - -#begin Sounds/Cries/261.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/261.mp3 - -#begin Sounds/Cries/262.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/262.mp3 - -#begin Sounds/Cries/285.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/285.mp3 - -#begin Sounds/Cries/286.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/286.mp3 - -#begin Sounds/Cries/361.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/361.mp3 - -#begin Sounds/Cries/362.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/362.mp3 - -#begin Sounds/Cries/363.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/363.mp3 - -#begin Sounds/Cries/364.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/364.mp3 - -#begin Sounds/Cries/365.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/365.mp3 - -#begin Sounds/Cries/415.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/415.mp3 - -#begin Sounds/Cries/416.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/416.mp3 - -#begin Sounds/Cries/459.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/459.mp3 - -#begin Sounds/Cries/460.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/460.mp3 - -#begin Sounds/Cries/582.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/582.mp3 - -#begin Sounds/Cries/583.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/583.mp3 - -#begin Sounds/Cries/584.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/584.mp3 - -#begin Sounds/Cries/613.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/613.mp3 - -#begin Sounds/Cries/614.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/614.mp3 - -#begin Pokemon/Overworld/Normal/261.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/261.png - -#begin Pokemon/Overworld/Normal/262.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/262.png - -#begin Pokemon/Overworld/Normal/285.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/285.png - -#begin Pokemon/Overworld/Normal/286.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/286.png - -#begin Pokemon/Overworld/Normal/361.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/361.png - -#begin Pokemon/Overworld/Normal/362.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/362.png - -#begin Pokemon/Overworld/Normal/363.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/363.png - -#begin Pokemon/Overworld/Normal/364.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/364.png - -#begin Pokemon/Overworld/Normal/365.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/365.png - -#begin Pokemon/Overworld/Normal/415.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/415.png - -#begin Pokemon/Overworld/Normal/416.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/416.png - -#begin Pokemon/Overworld/Normal/459.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/459.png - -#begin Pokemon/Overworld/Normal/460.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/460.png - -#begin Pokemon/Overworld/Normal/582.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/582.png - -#begin Pokemon/Overworld/Normal/583.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/583.png - -#begin Pokemon/Overworld/Normal/584.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/584.png - -#begin Pokemon/Overworld/Normal/613.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/613.png - -#begin Pokemon/Overworld/Normal/614.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/614.png - -#begin Pokemon/Overworld/Shiny/261.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/261.png - -#begin Pokemon/Overworld/Shiny/262.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/262.png - -#begin Pokemon/Overworld/Shiny/285.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/285.png - -#begin Pokemon/Overworld/Shiny/286.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/286.png - -#begin Pokemon/Overworld/Shiny/361.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/361.png - -#begin Pokemon/Overworld/Shiny/362.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/362.png - -#begin Pokemon/Overworld/Shiny/363.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/363.png - -#begin Pokemon/Overworld/Shiny/364.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/364.png - -#begin Pokemon/Overworld/Shiny/365.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/365.png - -#begin Pokemon/Overworld/Shiny/415.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/415.png - -#begin Pokemon/Overworld/Shiny/416.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/416.png - -#begin Pokemon/Overworld/Shiny/459.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/459.png - -#begin Pokemon/Overworld/Shiny/460.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/460.png - -#begin Pokemon/Overworld/Shiny/582.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/582.png - -#begin Pokemon/Overworld/Shiny/583.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/583.png - -#begin Pokemon/Overworld/Shiny/584.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/584.png - -#begin Pokemon/Overworld/Shiny/613.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/613.png - -#begin Pokemon/Overworld/Shiny/614.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/614.png - -#begin Pokemon/Sprites/Abomasnow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Abomasnow.png - -#begin Pokemon/Sprites/Beartic.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Beartic.png - -#begin Pokemon/Sprites/Breloom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Breloom.png - -#begin Pokemon/Sprites/Combee.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Combee.png - -#begin Pokemon/Sprites/Cubchoo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cubchoo.png - -#begin Pokemon/Sprites/Glalie.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Glalie.png - -#begin Pokemon/Sprites/Mightyena.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mightyena.png - -#begin Pokemon/Sprites/Poochyena.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Poochyena.png - -#begin Pokemon/Sprites/Sealeo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sealeo.png - -#begin Pokemon/Sprites/Shroomish.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shroomish.png - -#begin Pokemon/Sprites/Snorunt.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Snorunt.png - -#begin Pokemon/Sprites/Snover.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Snover.png - -#begin Pokemon/Sprites/Spheal.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Spheal.png - -#begin Pokemon/Sprites/Vanillish.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Vanillish.png - -#begin Pokemon/Sprites/Vanillite.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Vanillite.png - -#begin Pokemon/Sprites/Vanilluxe.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Vanilluxe.png - -#begin Pokemon/Sprites/Vespiquen.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Vespiquen.png - -#begin Pokemon/Sprites/Walrein.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Walrein.png - -#begin Textures/Weather/ash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Weather/ash.png - -#begin Textures/Weather/ash2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Weather/ash2.png - -#begin Songs/pvp.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/pvp.mp3 - -#begin Songs/intro/pvp.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/pvp.mp3 - -#begin Pokemon/Overworld/Normal/700.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/700.png - -#begin Pokemon/Overworld/Shiny/700.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/700.png - -#begin Sounds/Cries/700.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/700.mp3 - -#begin GUI/Box/storage.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/storage.png - -#begin GUI/Box/0.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/0.png - -#begin GUI/Box/1.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/1.png - -#begin GUI/Box/10.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/10.png - -#begin GUI/Box/2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/2.png - -#begin GUI/Box/3.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/3.png - -#begin GUI/Box/4.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/4.png - -#begin GUI/Box/5.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/5.png - -#begin GUI/Box/6.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/6.png - -#begin GUI/Box/7.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/7.png - -#begin GUI/Box/8.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/8.png - -#begin GUI/Box/9.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/9.png - -#begin GUI/Box/11.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/11.png - -#begin GUI/Box/12.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/12.png - -#begin GUI/Box/13.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/13.png - -#begin GUI/Box/14.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/14.png - -#begin GUI/Box/15.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/15.png - -#begin GUI/Box/16.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/16.png - -#begin GUI/Box/17.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/17.png - -#begin GUI/Box/18.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/18.png - -#begin GUI/Box/19.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/19.png - -#begin GUI/Box/20.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/20.png - -#begin GUI/Box/21.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/21.png - -#begin GUI/Box/22.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/22.png - -#begin GUI/Box/23.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/23.png - -#begin Textures/NPC/btguide.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/btguide.png - -#begin Textures/NPC/bt_nilllzz.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/bt_nilllzz.png - -#begin Textures/NPC/bt_statue.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/bt_statue.png - -#begin Textures/NPC/construction.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/construction.png - -#begin Textures/NPC/battletower/0.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/0.png - -#begin Textures/NPC/battletower/1.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/1.png - -#begin Textures/NPC/battletower/10.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/10.png - -#begin Textures/NPC/battletower/11.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/11.png - -#begin Textures/NPC/battletower/12.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/12.png - -#begin Textures/NPC/battletower/13.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/13.png - -#begin Textures/NPC/battletower/14.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/14.png - -#begin Textures/NPC/battletower/15.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/15.png - -#begin Textures/NPC/battletower/16.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/16.png - -#begin Textures/NPC/battletower/17.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/17.png - -#begin Textures/NPC/battletower/18.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/18.png - -#begin Textures/NPC/battletower/19.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/19.png - -#begin Textures/NPC/battletower/2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/2.png - -#begin Textures/NPC/battletower/20.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/20.png - -#begin Textures/NPC/battletower/21.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/21.png - -#begin Textures/NPC/battletower/22.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/22.png - -#begin Textures/NPC/battletower/23.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/23.png - -#begin Textures/NPC/battletower/24.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/24.png - -#begin Textures/NPC/battletower/25.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/25.png - -#begin Textures/NPC/battletower/26.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/26.png - -#begin Textures/NPC/battletower/27.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/27.png - -#begin Textures/NPC/battletower/28.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/28.png - -#begin Textures/NPC/battletower/29.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/29.png - -#begin Textures/NPC/battletower/3.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/3.png - -#begin Textures/NPC/battletower/30.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/30.png - -#begin Textures/NPC/battletower/31.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/31.png - -#begin Textures/NPC/battletower/32.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/32.png - -#begin Textures/NPC/battletower/33.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/33.png - -#begin Textures/NPC/battletower/34.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/34.png - -#begin Textures/NPC/battletower/35.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/35.png - -#begin Textures/NPC/battletower/36.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/36.png - -#begin Textures/NPC/battletower/37.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/37.png - -#begin Textures/NPC/battletower/38.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/38.png - -#begin Textures/NPC/battletower/39.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/39.png - -#begin Textures/NPC/battletower/4.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/4.png - -#begin Textures/NPC/battletower/40.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/40.png - -#begin Textures/NPC/battletower/41.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/41.png - -#begin Textures/NPC/battletower/42.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/42.png - -#begin Textures/NPC/battletower/43.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/43.png - -#begin Textures/NPC/battletower/44.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/44.png - -#begin Textures/NPC/battletower/45.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/45.png - -#begin Textures/NPC/battletower/46.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/46.png - -#begin Textures/NPC/battletower/47.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/47.png - -#begin Textures/NPC/battletower/48.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/48.png - -#begin Textures/NPC/battletower/49.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/49.png - -#begin Textures/NPC/battletower/5.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/5.png - -#begin Textures/NPC/battletower/50.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/50.png - -#begin Textures/NPC/battletower/51.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/51.png - -#begin Textures/NPC/battletower/52.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/52.png - -#begin Textures/NPC/battletower/53.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/53.png - -#begin Textures/NPC/battletower/6.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/6.png - -#begin Textures/NPC/battletower/7.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/7.png - -#begin Textures/NPC/battletower/8.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/8.png - -#begin Textures/NPC/battletower/9.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/battletower/9.png - -#begin Songs/frontier.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/frontier.mp3 - -#begin Songs/intro/frontier.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/frontier.mp3 - -#begin Songs/battletower.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/battletower.mp3 - -#begin Textures/Emblem/gold ability.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/gold ability.png - -#begin Textures/Emblem/gold knowledge.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/gold knowledge.png - -#begin Textures/Emblem/silver ability.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/silver ability.png - -#begin Textures/Emblem/silver knowledge.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/silver knowledge.png - -#begin Pokemon/Overworld/Normal/276.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/276.png - -#begin Pokemon/Overworld/Normal/277.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/277.png - -#begin Pokemon/Overworld/Normal/333.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/333.png - -#begin Pokemon/Overworld/Normal/334.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/334.png - -#begin Pokemon/Overworld/Normal/396.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/396.png - -#begin Pokemon/Overworld/Normal/397.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/397.png - -#begin Pokemon/Overworld/Normal/398.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/398.png - -#begin Pokemon/Overworld/Normal/519.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/519.png - -#begin Pokemon/Overworld/Normal/520.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/520.png - -#begin Pokemon/Overworld/Normal/521.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/521.png - -#begin Pokemon/Overworld/Shiny/276.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/276.png - -#begin Pokemon/Overworld/Shiny/277.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/277.png - -#begin Pokemon/Overworld/Shiny/333.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/333.png - -#begin Pokemon/Overworld/Shiny/334.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/334.png - -#begin Pokemon/Overworld/Shiny/396.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/396.png - -#begin Pokemon/Overworld/Shiny/397.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/397.png - -#begin Pokemon/Overworld/Shiny/398.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/398.png - -#begin Pokemon/Overworld/Shiny/519.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/519.png - -#begin Pokemon/Overworld/Shiny/520.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/520.png - -#begin Pokemon/Overworld/Shiny/521.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/521.png - -#begin Pokemon/Sprites/Altaria.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Altaria.png - -#begin Pokemon/Sprites/Pidove.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pidove.png - -#begin Pokemon/Sprites/Staraptor.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Staraptor.png - -#begin Pokemon/Sprites/Staravia.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Staravia.png - -#begin Pokemon/Sprites/Starly.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Starly.png - -#begin Pokemon/Sprites/Swablu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Swablu.png - -#begin Pokemon/Sprites/Swellow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Swellow.png - -#begin Pokemon/Sprites/Taillow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Taillow.png - -#begin Pokemon/Sprites/Tranquill.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tranquill.png - -#begin Pokemon/Sprites/Unfezant.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Unfezant.png - -#begin Sounds/Cries/276.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/276.mp3 - -#begin Sounds/Cries/277.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/277.mp3 - -#begin Sounds/Cries/333.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/333.mp3 - -#begin Sounds/Cries/334.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/334.mp3 - -#begin Sounds/Cries/396.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/396.mp3 - -#begin Sounds/Cries/397.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/397.mp3 - -#begin Sounds/Cries/398.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/398.mp3 - -#begin Sounds/Cries/519.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/519.mp3 - -#begin Sounds/Cries/520.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/520.mp3 - -#begin Sounds/Cries/521.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/521.mp3 - -#begin Pokemon/Sprites/Zoroark.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Zoroark.png - -#begin Pokemon/Sprites/Zorua.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Zorua.png - -#begin Pokemon/Sprites/Tympole.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tympole.png - -#begin Pokemon/Sprites/Shiftry.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shiftry.png - -#begin Pokemon/Sprites/Seismitoad.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Seismitoad.png - -#begin Pokemon/Sprites/Seedot.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Seedot.png - -#begin Pokemon/Sprites/Palpitoad.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Palpitoad.png - -#begin Pokemon/Sprites/Nuzleaf.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Nuzleaf.png - -#begin Pokemon/Sprites/Axew.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Axew.png - -#begin Pokemon/Sprites/Beldum.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Beldum.png - -#begin Pokemon/Sprites/Chandelure.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Chandelure.png - -#begin Pokemon/Sprites/Clamperl.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Clamperl.png - -#begin Pokemon/Sprites/Finneon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Finneon.png - -#begin Pokemon/Sprites/Fraxure.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Fraxure.png - -#begin Pokemon/Sprites/Gorebyss.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gorebyss.png - -#begin Pokemon/Sprites/Hariyama.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Hariyama.png - -#begin Pokemon/Sprites/Haxorus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Haxorus.png - -#begin Pokemon/Sprites/Huntail.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Huntail.png - -#begin Pokemon/Sprites/Klang.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Klang.png - -#begin Pokemon/Sprites/Klink.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Klink.png - -#begin Pokemon/Sprites/Klinklang.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Klinklang.png - -#begin Pokemon/Sprites/Lampent.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lampent.png - -#begin Pokemon/Sprites/Litwick.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Litwick.png - -#begin Pokemon/Sprites/Lumineon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lumineon.png - -#begin Pokemon/Sprites/Makuhita.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Makuhita.png - -#begin Pokemon/Sprites/Metagross.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Metagross.png - -#begin Pokemon/Sprites/Metang.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Metang.png - -#begin Pokemon/Overworld/Normal/273.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/273.png - -#begin Pokemon/Overworld/Normal/274.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/274.png - -#begin Pokemon/Overworld/Normal/275.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/275.png - -#begin Pokemon/Overworld/Normal/296.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/296.png - -#begin Pokemon/Overworld/Normal/297.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/297.png - -#begin Pokemon/Overworld/Normal/366.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/366.png - -#begin Pokemon/Overworld/Normal/367.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/367.png - -#begin Pokemon/Overworld/Normal/368.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/368.png - -#begin Pokemon/Overworld/Normal/374.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/374.png - -#begin Pokemon/Overworld/Normal/375.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/375.png - -#begin Pokemon/Overworld/Normal/376.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/376.png - -#begin Pokemon/Overworld/Normal/456.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/456.png - -#begin Pokemon/Overworld/Normal/457.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/457.png - -#begin Pokemon/Overworld/Normal/535.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/535.png - -#begin Pokemon/Overworld/Normal/536.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/536.png - -#begin Pokemon/Overworld/Normal/537.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/537.png - -#begin Pokemon/Overworld/Normal/570.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/570.png - -#begin Pokemon/Overworld/Normal/571.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/571.png - -#begin Pokemon/Overworld/Normal/599.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/599.png - -#begin Pokemon/Overworld/Normal/600.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/600.png - -#begin Pokemon/Overworld/Normal/601.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/601.png - -#begin Pokemon/Overworld/Normal/607.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/607.png - -#begin Pokemon/Overworld/Normal/608.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/608.png - -#begin Pokemon/Overworld/Normal/609.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/609.png - -#begin Pokemon/Overworld/Normal/610.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/610.png - -#begin Pokemon/Overworld/Normal/611.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/611.png - -#begin Pokemon/Overworld/Normal/612.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/612.png - -#begin Pokemon/Overworld/Shiny/273.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/273.png - -#begin Pokemon/Overworld/Shiny/274.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/274.png - -#begin Pokemon/Overworld/Shiny/275.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/275.png - -#begin Pokemon/Overworld/Shiny/296.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/296.png - -#begin Pokemon/Overworld/Shiny/297.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/297.png - -#begin Pokemon/Overworld/Shiny/366.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/366.png - -#begin Pokemon/Overworld/Shiny/367.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/367.png - -#begin Pokemon/Overworld/Shiny/368.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/368.png - -#begin Pokemon/Overworld/Shiny/374.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/374.png - -#begin Pokemon/Overworld/Shiny/375.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/375.png - -#begin Pokemon/Overworld/Shiny/376.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/376.png - -#begin Pokemon/Overworld/Shiny/456.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/456.png - -#begin Pokemon/Overworld/Shiny/457.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/457.png - -#begin Pokemon/Overworld/Shiny/535.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/535.png - -#begin Pokemon/Overworld/Shiny/536.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/536.png - -#begin Pokemon/Overworld/Shiny/537.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/537.png - -#begin Pokemon/Overworld/Shiny/570.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/570.png - -#begin Pokemon/Overworld/Shiny/571.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/571.png - -#begin Pokemon/Overworld/Shiny/599.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/599.png - -#begin Pokemon/Overworld/Shiny/600.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/600.png - -#begin Pokemon/Overworld/Shiny/601.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/601.png - -#begin Pokemon/Overworld/Shiny/607.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/607.png - -#begin Pokemon/Overworld/Shiny/608.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/608.png - -#begin Pokemon/Overworld/Shiny/609.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/609.png - -#begin Pokemon/Overworld/Shiny/610.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/610.png - -#begin Pokemon/Overworld/Shiny/611.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/611.png - -#begin Pokemon/Overworld/Shiny/612.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/612.png - -#begin Sounds/Cries/273.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/273.mp3 - -#begin Sounds/Cries/274.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/274.mp3 - -#begin Sounds/Cries/275.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/275.mp3 - -#begin Sounds/Cries/296.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/296.mp3 - -#begin Sounds/Cries/297.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/297.mp3 - -#begin Sounds/Cries/366.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/366.mp3 - -#begin Sounds/Cries/367.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/367.mp3 - -#begin Sounds/Cries/368.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/368.mp3 - -#begin Sounds/Cries/374.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/374.mp3 - -#begin Sounds/Cries/375.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/375.mp3 - -#begin Sounds/Cries/376.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/376.mp3 - -#begin Sounds/Cries/456.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/456.mp3 - -#begin Sounds/Cries/457.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/457.mp3 - -#begin Sounds/Cries/535.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/535.mp3 - -#begin Sounds/Cries/536.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/536.mp3 - -#begin Sounds/Cries/537.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/537.mp3 - -#begin Sounds/Cries/570.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/570.mp3 - -#begin Sounds/Cries/571.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/571.mp3 - -#begin Sounds/Cries/599.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/599.mp3 - -#begin Sounds/Cries/600.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/600.mp3 - -#begin Sounds/Cries/601.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/601.mp3 - -#begin Sounds/Cries/607.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/607.mp3 - -#begin Sounds/Cries/608.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/608.mp3 - -#begin Sounds/Cries/609.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/609.mp3 - -#begin Sounds/Cries/610.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/610.mp3 - -#begin Sounds/Cries/611.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/611.mp3 - -#begin Sounds/Cries/612.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/612.mp3 - -#begin Textures/NPC/seaweed.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/seaweed.png - -#begin Textures/battlefactory.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/battlefactory.png - -#begin Sounds/single_heal.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/single_heal.mp3 - -#begin GUI/Intro/battlefrontier.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Intro/battlefrontier.png - -#begin Songs/brain_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/brain_battle.mp3 - -#begin Songs/brain_battle_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/brain_battle_intro.mp3 - -#begin Songs/battlefactory.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/battlefactory.mp3 - -#begin Songs/intro/battlefactory.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/battlefactory.mp3 - -#begin Songs/intro/johto_trainer.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/johto_trainer.mp3 - -#begin Textures/battletower.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/battletower.png - -#begin GUI/Menus/pokegear.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Menus/pokegear.png - -#begin Sounds/destroy.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/destroy.mp3 - -#begin Sounds/enter.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/enter.mp3 - -#begin Sounds/Cries/636.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/636.mp3 - -#begin Sounds/Cries/637.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/637.mp3 - -#begin Pokemon/Overworld/Normal/442.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/442.png - -#begin Pokemon/Overworld/Normal/636.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/636.png - -#begin Pokemon/Overworld/Normal/637.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/637.png - -#begin Pokemon/Overworld/Shiny/442.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/442.png - -#begin Pokemon/Overworld/Shiny/636.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/636.png - -#begin Pokemon/Overworld/Shiny/637.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/637.png - -#begin Pokemon/Sprites/Larvesta.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Larvesta.png - -#begin Pokemon/Sprites/Spiritomb.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Spiritomb.png - -#begin Pokemon/Sprites/Volcarona.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Volcarona.png - -#begin Sounds/Cries/263.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/263.mp3 - -#begin Sounds/Cries/264.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/264.mp3 - -#begin Sounds/Cries/265.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/265.mp3 - -#begin Sounds/Cries/266.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/266.mp3 - -#begin Sounds/Cries/267.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/267.mp3 - -#begin Sounds/Cries/268.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/268.mp3 - -#begin Sounds/Cries/269.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/269.mp3 - -#begin Sounds/Cries/278.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/278.mp3 - -#begin Sounds/Cries/279.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/279.mp3 - -#begin Sounds/Cries/304.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/304.mp3 - -#begin Sounds/Cries/305.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/305.mp3 - -#begin Sounds/Cries/306.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/306.mp3 - -#begin Sounds/Cries/307.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/307.mp3 - -#begin Sounds/Cries/308.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/308.mp3 - -#begin Sounds/Cries/315.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/315.mp3 - -#begin Sounds/Cries/341.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/341.mp3 - -#begin Sounds/Cries/342.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/342.mp3 - -#begin Sounds/Cries/349.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/349.mp3 - -#begin Sounds/Cries/350.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/350.mp3 - -#begin Sounds/Cries/371.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/371.mp3 - -#begin Sounds/Cries/372.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/372.mp3 - -#begin Sounds/Cries/373.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/373.mp3 - -#begin Sounds/Cries/399.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/399.mp3 - -#begin Sounds/Cries/400.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/400.mp3 - -#begin Sounds/Cries/406.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/406.mp3 - -#begin Sounds/Cries/407.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/407.mp3 - -#begin Sounds/Cries/418.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/418.mp3 - -#begin Sounds/Cries/419.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/419.mp3 - -#begin Sounds/Cries/422.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/422.mp3 - -#begin Sounds/Cries/423.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/423.mp3 - -#begin Sounds/Cries/436.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/436.mp3 - -#begin Sounds/Cries/437.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/437.mp3 - -#begin Sounds/Cries/443.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/443.mp3 - -#begin Sounds/Cries/444.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/444.mp3 - -#begin Sounds/Cries/445.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/445.mp3 - -#begin Sounds/Cries/451.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/451.mp3 - -#begin Sounds/Cries/452.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/452.mp3 - -#begin Sounds/Cries/504.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/504.mp3 - -#begin Sounds/Cries/505.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/505.mp3 - -#begin Sounds/Cries/506.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/506.mp3 - -#begin Sounds/Cries/507.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/507.mp3 - -#begin Sounds/Cries/508.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/508.mp3 - -#begin Sounds/Cries/509.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/509.mp3 - -#begin Sounds/Cries/510.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/510.mp3 - -#begin Sounds/Cries/511.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/511.mp3 - -#begin Sounds/Cries/512.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/512.mp3 - -#begin Sounds/Cries/513.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/513.mp3 - -#begin Sounds/Cries/514.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/514.mp3 - -#begin Sounds/Cries/515.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/515.mp3 - -#begin Sounds/Cries/516.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/516.mp3 - -#begin Sounds/Cries/522.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/522.mp3 - -#begin Sounds/Cries/523.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/523.mp3 - -#begin Sounds/Cries/531.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/531.mp3 - -#begin Sounds/Cries/540.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/540.mp3 - -#begin Sounds/Cries/541.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/541.mp3 - -#begin Sounds/Cries/542.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/542.mp3 - -#begin Sounds/Cries/546.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/546.mp3 - -#begin Sounds/Cries/547.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/547.mp3 - -#begin Sounds/Cries/557.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/557.mp3 - -#begin Sounds/Cries/558.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/558.mp3 - -#begin Sounds/Cries/580.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/580.mp3 - -#begin Sounds/Cries/581.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/581.mp3 - -#begin Sounds/Cries/592.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/592.mp3 - -#begin Sounds/Cries/593.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/593.mp3 - -#begin Sounds/Cries/602.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/602.mp3 - -#begin Sounds/Cries/603.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/603.mp3 - -#begin Sounds/Cries/604.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/604.mp3 - -#begin Sounds/Cries/621.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/621.mp3 - -#begin Sounds/Cries/629.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/629.mp3 - -#begin Sounds/Cries/630.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/630.mp3 - -#begin Sounds/Cries/633.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/633.mp3 - -#begin Sounds/Cries/634.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/634.mp3 - -#begin Sounds/Cries/635.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/635.mp3 - -#begin Pokemon/Overworld/Normal/263.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/263.png - -#begin Pokemon/Overworld/Normal/264.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/264.png - -#begin Pokemon/Overworld/Normal/265.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/265.png - -#begin Pokemon/Overworld/Normal/266.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/266.png - -#begin Pokemon/Overworld/Normal/267.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/267.png - -#begin Pokemon/Overworld/Normal/268.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/268.png - -#begin Pokemon/Overworld/Normal/269.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/269.png - -#begin Pokemon/Overworld/Normal/278.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/278.png - -#begin Pokemon/Overworld/Normal/279.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/279.png - -#begin Pokemon/Overworld/Normal/304.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/304.png - -#begin Pokemon/Overworld/Normal/305.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/305.png - -#begin Pokemon/Overworld/Normal/306.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/306.png - -#begin Pokemon/Overworld/Normal/307.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/307.png - -#begin Pokemon/Overworld/Normal/308.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/308.png - -#begin Pokemon/Overworld/Normal/315.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/315.png - -#begin Pokemon/Overworld/Normal/341.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/341.png - -#begin Pokemon/Overworld/Normal/342.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/342.png - -#begin Pokemon/Overworld/Normal/349.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/349.png - -#begin Pokemon/Overworld/Normal/350.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/350.png - -#begin Pokemon/Overworld/Normal/371.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/371.png - -#begin Pokemon/Overworld/Normal/372.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/372.png - -#begin Pokemon/Overworld/Normal/373.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/373.png - -#begin Pokemon/Overworld/Normal/399.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/399.png - -#begin Pokemon/Overworld/Normal/400.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/400.png - -#begin Pokemon/Overworld/Normal/406.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/406.png - -#begin Pokemon/Overworld/Normal/407.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/407.png - -#begin Pokemon/Overworld/Normal/418.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/418.png - -#begin Pokemon/Overworld/Normal/419.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/419.png - -#begin Pokemon/Overworld/Normal/422e.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/422e.png - -#begin Pokemon/Overworld/Normal/422w.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/422w.png - -#begin Pokemon/Overworld/Normal/423e.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/423e.png - -#begin Pokemon/Overworld/Normal/423w.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/423w.png - -#begin Pokemon/Overworld/Normal/427.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/427.png - -#begin Pokemon/Overworld/Normal/428.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/428.png - -#begin Pokemon/Overworld/Normal/436.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/436.png - -#begin Pokemon/Overworld/Normal/437.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/437.png - -#begin Pokemon/Overworld/Normal/443.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/443.png - -#begin Pokemon/Overworld/Normal/444.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/444.png - -#begin Pokemon/Overworld/Normal/445.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/445.png - -#begin Pokemon/Overworld/Normal/451.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/451.png - -#begin Pokemon/Overworld/Normal/452.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/452.png - -#begin Pokemon/Overworld/Normal/504.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/504.png - -#begin Pokemon/Overworld/Normal/505.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/505.png - -#begin Pokemon/Overworld/Normal/506.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/506.png - -#begin Pokemon/Overworld/Normal/507.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/507.png - -#begin Pokemon/Overworld/Normal/508.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/508.png - -#begin Pokemon/Overworld/Normal/509.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/509.png - -#begin Pokemon/Overworld/Normal/510.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/510.png - -#begin Pokemon/Overworld/Normal/511.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/511.png - -#begin Pokemon/Overworld/Normal/512.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/512.png - -#begin Pokemon/Overworld/Normal/513.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/513.png - -#begin Pokemon/Overworld/Normal/514.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/514.png - -#begin Pokemon/Overworld/Normal/515.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/515.png - -#begin Pokemon/Overworld/Normal/516.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/516.png - -#begin Pokemon/Overworld/Normal/522.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/522.png - -#begin Pokemon/Overworld/Normal/523.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/523.png - -#begin Pokemon/Overworld/Normal/531.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/531.png - -#begin Pokemon/Overworld/Normal/540.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/540.png - -#begin Pokemon/Overworld/Normal/541.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/541.png - -#begin Pokemon/Overworld/Normal/542.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/542.png - -#begin Pokemon/Overworld/Normal/546.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/546.png - -#begin Pokemon/Overworld/Normal/547.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/547.png - -#begin Pokemon/Overworld/Normal/557.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/557.png - -#begin Pokemon/Overworld/Normal/558.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/558.png - -#begin Pokemon/Overworld/Normal/580.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/580.png - -#begin Pokemon/Overworld/Normal/581.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/581.png - -#begin Pokemon/Overworld/Normal/592_m.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/592_m.png - -#begin Pokemon/Overworld/Normal/593_m.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/593_m.png - -#begin Pokemon/Overworld/Normal/602.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/602.png - -#begin Pokemon/Overworld/Normal/603.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/603.png - -#begin Pokemon/Overworld/Normal/604.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/604.png - -#begin Pokemon/Overworld/Normal/621.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/621.png - -#begin Pokemon/Overworld/Normal/629.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/629.png - -#begin Pokemon/Overworld/Normal/630.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/630.png - -#begin Pokemon/Overworld/Normal/633.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/633.png - -#begin Pokemon/Overworld/Normal/634.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/634.png - -#begin Pokemon/Overworld/Normal/635.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/635.png - -#begin Pokemon/Overworld/Shiny/263.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/263.png - -#begin Pokemon/Overworld/Shiny/264.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/264.png - -#begin Pokemon/Overworld/Shiny/265.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/265.png - -#begin Pokemon/Overworld/Shiny/266.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/266.png - -#begin Pokemon/Overworld/Shiny/267.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/267.png - -#begin Pokemon/Overworld/Shiny/268.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/268.png - -#begin Pokemon/Overworld/Shiny/269.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/269.png - -#begin Pokemon/Overworld/Shiny/278.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/278.png - -#begin Pokemon/Overworld/Shiny/279.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/279.png - -#begin Pokemon/Overworld/Shiny/304.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/304.png - -#begin Pokemon/Overworld/Shiny/305.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/305.png - -#begin Pokemon/Overworld/Shiny/306.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/306.png - -#begin Pokemon/Overworld/Shiny/307.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/307.png - -#begin Pokemon/Overworld/Shiny/308.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/308.png - -#begin Pokemon/Overworld/Shiny/315.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/315.png - -#begin Pokemon/Overworld/Shiny/341.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/341.png - -#begin Pokemon/Overworld/Shiny/342.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/342.png - -#begin Pokemon/Overworld/Shiny/349.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/349.png - -#begin Pokemon/Overworld/Shiny/350.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/350.png - -#begin Pokemon/Overworld/Shiny/371.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/371.png - -#begin Pokemon/Overworld/Shiny/372.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/372.png - -#begin Pokemon/Overworld/Shiny/373.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/373.png - -#begin Pokemon/Overworld/Shiny/399.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/399.png - -#begin Pokemon/Overworld/Shiny/400.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/400.png - -#begin Pokemon/Overworld/Shiny/406.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/406.png - -#begin Pokemon/Overworld/Shiny/407.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/407.png - -#begin Pokemon/Overworld/Shiny/418.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/418.png - -#begin Pokemon/Overworld/Shiny/419.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/419.png - -#begin Pokemon/Overworld/Shiny/422e.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/422e.png - -#begin Pokemon/Overworld/Shiny/422w.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/422w.png - -#begin Pokemon/Overworld/Shiny/423e.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/423e.png - -#begin Pokemon/Overworld/Shiny/423w.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/423w.png - -#begin Pokemon/Overworld/Shiny/427.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/427.png - -#begin Pokemon/Overworld/Shiny/428.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/428.png - -#begin Pokemon/Overworld/Shiny/436.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/436.png - -#begin Pokemon/Overworld/Shiny/437.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/437.png - -#begin Pokemon/Overworld/Shiny/443.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/443.png - -#begin Pokemon/Overworld/Shiny/444.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/444.png - -#begin Pokemon/Overworld/Shiny/445.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/445.png - -#begin Pokemon/Overworld/Shiny/451.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/451.png - -#begin Pokemon/Overworld/Shiny/452.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/452.png - -#begin Pokemon/Overworld/Shiny/504.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/504.png - -#begin Pokemon/Overworld/Shiny/505.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/505.png - -#begin Pokemon/Overworld/Shiny/506.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/506.png - -#begin Pokemon/Overworld/Shiny/507.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/507.png - -#begin Pokemon/Overworld/Shiny/508.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/508.png - -#begin Pokemon/Overworld/Shiny/509.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/509.png - -#begin Pokemon/Overworld/Shiny/510.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/510.png - -#begin Pokemon/Overworld/Shiny/511.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/511.png - -#begin Pokemon/Overworld/Shiny/512.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/512.png - -#begin Pokemon/Overworld/Shiny/513.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/513.png - -#begin Pokemon/Overworld/Shiny/514.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/514.png - -#begin Pokemon/Overworld/Shiny/515.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/515.png - -#begin Pokemon/Overworld/Shiny/516.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/516.png - -#begin Pokemon/Overworld/Shiny/522.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/522.png - -#begin Pokemon/Overworld/Shiny/523.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/523.png - -#begin Pokemon/Overworld/Shiny/531.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/531.png - -#begin Pokemon/Overworld/Shiny/540.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/540.png - -#begin Pokemon/Overworld/Shiny/541.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/541.png - -#begin Pokemon/Overworld/Shiny/542.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/542.png - -#begin Pokemon/Overworld/Shiny/546.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/546.png - -#begin Pokemon/Overworld/Shiny/547.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/547.png - -#begin Pokemon/Overworld/Shiny/557.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/557.png - -#begin Pokemon/Overworld/Shiny/558.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/558.png - -#begin Pokemon/Overworld/Shiny/580.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/580.png - -#begin Pokemon/Overworld/Shiny/581.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/581.png - -#begin Pokemon/Overworld/Shiny/592_m.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/592_m.png - -#begin Pokemon/Overworld/Shiny/593_m.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/593_m.png - -#begin Pokemon/Overworld/Shiny/602.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/602.png - -#begin Pokemon/Overworld/Shiny/603.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/603.png - -#begin Pokemon/Overworld/Shiny/604.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/604.png - -#begin Pokemon/Overworld/Shiny/621.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/621.png - -#begin Pokemon/Overworld/Shiny/629.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/629.png - -#begin Pokemon/Overworld/Shiny/630.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/630.png - -#begin Pokemon/Overworld/Shiny/633.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/633.png - -#begin Pokemon/Overworld/Shiny/634.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/634.png - -#begin Pokemon/Overworld/Shiny/635.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/635.png - -#begin Pokemon/Sprites/Aggron.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Aggron.png - -#begin Pokemon/Sprites/Aron.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Aron.png - -#begin Pokemon/Sprites/Audino.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Audino.png - -#begin Pokemon/Sprites/Bagon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bagon.png - -#begin Pokemon/Sprites/Beautifly.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Beautifly.png - -#begin Pokemon/Sprites/Bibarel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bibarel.png - -#begin Pokemon/Sprites/Bidoof.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bidoof.png - -#begin Pokemon/Sprites/Blitzle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Blitzle.png - -#begin Pokemon/Sprites/Bronzong.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bronzong.png - -#begin Pokemon/Sprites/Bronzor.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bronzor.png - -#begin Pokemon/Sprites/Budew.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Budew.png - -#begin Pokemon/Sprites/Buizel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Buizel.png - -#begin Pokemon/Sprites/Buneary.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Buneary.png - -#begin Pokemon/Sprites/Cascoon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cascoon.png - -#begin Pokemon/Sprites/Corphish.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Corphish.png - -#begin Pokemon/Sprites/Cottonee.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cottonee.png - -#begin Pokemon/Sprites/Crawdaunt.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Crawdaunt.png - -#begin Pokemon/Sprites/Crustle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Crustle.png - -#begin Pokemon/Sprites/Deino.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Deino.png - -#begin Pokemon/Sprites/Drapion.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Drapion.png - -#begin Pokemon/Sprites/Druddigon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Druddigon.png - -#begin Pokemon/Sprites/Ducklett.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ducklett.png - -#begin Pokemon/Sprites/Dustox.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dustox.png - -#begin Pokemon/Sprites/Dwebble.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dwebble.png - -#begin Pokemon/Sprites/Eelektrik.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Eelektrik.png - -#begin Pokemon/Sprites/Eelektross.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Eelektross.png - -#begin Pokemon/Sprites/Feebas.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Feebas.png - -#begin Pokemon/Sprites/Floatzel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Floatzel.png - -#begin Pokemon/Sprites/Frillish_m.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Frillish_m.png - -#begin Pokemon/Sprites/Gabite.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gabite.png - -#begin Pokemon/Sprites/Garchomp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Garchomp.png - -#begin Pokemon/Sprites/Gastrodone.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gastrodone.png - -#begin Pokemon/Sprites/Gastrodonw.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gastrodonw.png - -#begin Pokemon/Sprites/Gible.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gible.png - -#begin Pokemon/Sprites/Herdier.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Herdier.png - -#begin Pokemon/Sprites/Hydreigon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Hydreigon.png - -#begin Pokemon/Sprites/Jellicent_m.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Jellicent_m.png - -#begin Pokemon/Sprites/Lairon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lairon.png - -#begin Pokemon/Sprites/Leavanny.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Leavanny.png - -#begin Pokemon/Sprites/Liepard.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Liepard.png - -#begin Pokemon/Sprites/Lillipup.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lillipup.png - -#begin Pokemon/Sprites/Linoone.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Linoone.png - -#begin Pokemon/Sprites/Lopunny.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lopunny.png - -#begin Pokemon/Sprites/Mandibuzz.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mandibuzz.png - -#begin Pokemon/Sprites/Medicham.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Medicham.png - -#begin Pokemon/Sprites/Meditite.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Meditite.png - -#begin Pokemon/Sprites/Milotic.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Milotic.png - -#begin Pokemon/Sprites/Panpour.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Panpour.png - -#begin Pokemon/Sprites/Pansage.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pansage.png - -#begin Pokemon/Sprites/Pansear.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pansear.png - -#begin Pokemon/Sprites/Patrat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Patrat.png - -#begin Pokemon/Sprites/Pelipper.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pelipper.png - -#begin Pokemon/Sprites/Purrloin.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Purrloin.png - -#begin Pokemon/Sprites/Roselia.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Roselia.png - -#begin Pokemon/Sprites/Roserade.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Roserade.png - -#begin Pokemon/Sprites/Salamence.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Salamence.png - -#begin Pokemon/Sprites/Sewaddle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sewaddle.png - -#begin Pokemon/Sprites/Shelgon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shelgon.png - -#begin Pokemon/Sprites/Shellose.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shellose.png - -#begin Pokemon/Sprites/Shellosw.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shellosw.png - -#begin Pokemon/Sprites/Silcoon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Silcoon.png - -#begin Pokemon/Sprites/Simipour.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Simipour.png - -#begin Pokemon/Sprites/Simisage.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Simisage.png - -#begin Pokemon/Sprites/Simisear.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Simisear.png - -#begin Pokemon/Sprites/Skorupi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Skorupi.png - -#begin Pokemon/Sprites/Stoutland.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Stoutland.png - -#begin Pokemon/Sprites/Swadloon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Swadloon.png - -#begin Pokemon/Sprites/Swanna.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Swanna.png - -#begin Pokemon/Sprites/Tynamo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tynamo.png - -#begin Pokemon/Sprites/Vullaby.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Vullaby.png - -#begin Pokemon/Sprites/Watchog.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Watchog.png - -#begin Pokemon/Sprites/Whimsicott.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Whimsicott.png - -#begin Pokemon/Sprites/Wingull.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wingull.png - -#begin Pokemon/Sprites/Wurmple.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wurmple.png - -#begin Pokemon/Sprites/Zebstrika.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Zebstrika.png - -#begin Pokemon/Sprites/Zigzagoon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Zigzagoon.png - -#begin Pokemon/Sprites/Zweilous.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Zweilous.png - -#begin Pokemon/Overworld/Normal/585_fa.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/585_fa.png - -#begin Pokemon/Overworld/Normal/585_sp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/585_sp.png - -#begin Pokemon/Overworld/Normal/585_su.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/585_su.png - -#begin Pokemon/Overworld/Normal/585_wi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/585_wi.png - -#begin Pokemon/Overworld/Normal/586_fa.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/586_fa.png - -#begin Pokemon/Overworld/Normal/586_sp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/586_sp.png - -#begin Pokemon/Overworld/Normal/586_su.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/586_su.png - -#begin Pokemon/Overworld/Normal/586_wi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/586_wi.png - -#begin Pokemon/Overworld/Shiny/585_fa.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/585_fa.png - -#begin Pokemon/Overworld/Shiny/585_sp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/585_sp.png - -#begin Pokemon/Overworld/Shiny/585_su.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/585_su.png - -#begin Pokemon/Overworld/Shiny/585_wi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/585_wi.png - -#begin Pokemon/Overworld/Shiny/586_fa.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/586_fa.png - -#begin Pokemon/Overworld/Shiny/586_sp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/586_sp.png - -#begin Pokemon/Overworld/Shiny/586_su.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/586_su.png - -#begin Pokemon/Overworld/Shiny/586_wi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/586_wi.png - -#begin Pokemon/Sprites/Deerling_fa.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Deerling_fa.png - -#begin Pokemon/Sprites/Deerling_sp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Deerling_sp.png - -#begin Pokemon/Sprites/Deerling_su.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Deerling_su.png - -#begin Pokemon/Sprites/Deerling_wi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Deerling_wi.png - -#begin Pokemon/Sprites/Sawsbuck_fa.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sawsbuck_fa.png - -#begin Pokemon/Sprites/Sawsbuck_sp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sawsbuck_sp.png - -#begin Pokemon/Sprites/Sawsbuck_su.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sawsbuck_su.png - -#begin Pokemon/Sprites/Sawsbuck_wi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sawsbuck_wi.png - -#begin Sounds/Cries/585.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/585.mp3 - -#begin Sounds/Cries/586.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/586.mp3 - -#begin Pokemon/Sprites/Frillish_f.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Frillish_f.png - -#begin Pokemon/Overworld/Normal/592_f.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/592_f.png - -#begin Pokemon/Sprites/Jellicent_f.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Jellicent_f.png - -#begin Pokemon/Overworld/Normal/593_f.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/593_f.png - -#begin Pokemon/Overworld/Shiny/592_f.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/592_f.png - -#begin Pokemon/Overworld/Shiny/593_f.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/593_f.png - -#begin SkyDomeResource/UnderwaterGround.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/UnderwaterGround.png - -#begin Songs/gamecorner.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/gamecorner.mp3 - -#begin Songs/oakslab.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/oakslab.mp3 - -#begin Songs/intro/gamecorner.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/gamecorner.mp3 - -#begin Songs/intro/oakslab.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/oakslab.mp3 - -#begin Songs/pokemon_lullaby.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/pokemon_lullaby.mp3 - -#begin Songs/pokemon_march.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/pokemon_march.mp3 - -#begin Songs/intro/pokemon_lullaby.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/pokemon_lullaby.mp3 - -#begin Songs/intro/pokemon_march.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/pokemon_march.mp3 - -#begin Songs/unown_broadcast.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/unown_broadcast.mp3 - -#begin Songs/rocket_broadcast.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/rocket_broadcast.mp3 - -#begin Songs/evolution.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/evolution.mp3 - -#begin Songs/intro/evolution.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/evolution.mp3 - -#begin Sounds/success.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/success.mp3 - -#begin GUI/Menus/pokedexhabitat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Menus/pokedexhabitat.png - -#begin GUI/PokemonMenuShiny.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/PokemonMenuShiny.png - -#begin Models/truck2/Truck.fbx -/importer:FbxImporter -/processor:ModelProcessor -/processorParam:ColorKeyColor=0,0,0,0 -/processorParam:ColorKeyEnabled=True -/processorParam:DefaultEffect=BasicEffect -/processorParam:GenerateMipmaps=True -/processorParam:GenerateTangentFrames=False -/processorParam:PremultiplyTextureAlpha=True -/processorParam:PremultiplyVertexColors=True -/processorParam:ResizeTexturesToPowerOfTwo=False -/processorParam:RotationX=0 -/processorParam:RotationY=0 -/processorParam:RotationZ=0 -/processorParam:Scale=1 -/processorParam:SwapWindingOrder=False -/processorParam:TextureFormat=DxtCompressed -/build:Models/truck2/Truck.fbx - -#begin Songs/kanto_leader.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/kanto_leader.mp3 - -#begin Songs/kanto_leader_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/kanto_leader_intro.mp3 - -#begin Songs/kanto_trainer.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/kanto_trainer.mp3 - -#begin Songs/kanto_trainer_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/kanto_trainer_intro.mp3 - -#begin Songs/RouteMusic7.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic7.mp3 - -#begin Songs/vermilion.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/vermilion.mp3 - -#begin Songs/intro/kanto_leader.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/kanto_leader.mp3 - -#begin Songs/intro/kanto_trainer.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/kanto_trainer.mp3 - -#begin Songs/intro/RouteMusic7.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/RouteMusic7.mp3 - -#begin Songs/intro/vermilion.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/vermilion.mp3 - -#begin Textures/NPC/lightning.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/lightning.png - -#begin Textures/NPC/LtSurge.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/LtSurge.png - -#begin Songs/diglettscave.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/diglettscave.mp3 - -#begin Songs/kanto_wild.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/kanto_wild.mp3 - -#begin Songs/kanto_wild_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/kanto_wild_intro.mp3 - -#begin Songs/intro/diglettscave.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/diglettscave.mp3 - -#begin Pokemon/Overworld/Normal/661.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/661.png - -#begin Pokemon/Overworld/Normal/662.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/662.png - -#begin Pokemon/Overworld/Normal/663.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/663.png - -#begin Pokemon/Overworld/Shiny/661.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/661.png - -#begin Pokemon/Overworld/Shiny/662.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/662.png - -#begin Pokemon/Overworld/Shiny/663.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/663.png - -#begin Pokemon/Sprites/Fletchinder.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Fletchinder.png - -#begin Pokemon/Sprites/Fletchling.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Fletchling.png - -#begin Pokemon/Sprites/Talonflame.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Talonflame.png - -#begin Sounds/Cries/661.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/661.mp3 - -#begin Sounds/Cries/662.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/662.mp3 - -#begin Sounds/Cries/663.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/663.mp3 - -#begin Textures/NPC/Leaf.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Leaf.png - -#begin Textures/NPC/Anvil.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Anvil.png - -#begin Textures/NPC/mrhippocrit.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/mrhippocrit.png - -#begin Pokemon/Sprites/Pancham.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pancham.png - -#begin Pokemon/Sprites/Pangoro.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pangoro.png - -#begin Pokemon/Overworld/Shiny/674.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/674.png - -#begin Pokemon/Overworld/Shiny/675.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/675.png - -#begin Pokemon/Overworld/Normal/674.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/674.png - -#begin Pokemon/Overworld/Normal/675.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/675.png - -#begin Sounds/Cries/674.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/674.mp3 - -#begin Sounds/Cries/675.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/675.mp3 - -#begin GUI/no_texture.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/no_texture.png - -#begin Textures/Emblem/thunder.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/thunder.png - -#begin Textures/Emblem/boulder.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/boulder.png - -#begin Textures/Emblem/cascade.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/cascade.png - -#begin Pokemon/Sprites/Luxio.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Luxio.png - -#begin Pokemon/Sprites/Luxray.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Luxray.png - -#begin Pokemon/Sprites/Rotom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rotom.png - -#begin Pokemon/Sprites/Rotom_fan.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rotom_fan.png - -#begin Pokemon/Sprites/Rotom_frost.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rotom_frost.png - -#begin Pokemon/Sprites/Rotom_heat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rotom_heat.png - -#begin Pokemon/Sprites/Rotom_mow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rotom_mow.png - -#begin Pokemon/Sprites/Rotom_wash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rotom_wash.png - -#begin Pokemon/Sprites/Shinx.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shinx.png - -#begin Pokemon/Overworld/Normal/403.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/403.png - -#begin Pokemon/Overworld/Normal/404.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/404.png - -#begin Pokemon/Overworld/Normal/405.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/405.png - -#begin Pokemon/Overworld/Normal/479.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/479.png - -#begin Pokemon/Overworld/Normal/479_fan.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/479_fan.png - -#begin Pokemon/Overworld/Normal/479_frost.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/479_frost.png - -#begin Pokemon/Overworld/Normal/479_heat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/479_heat.png - -#begin Pokemon/Overworld/Normal/479_mow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/479_mow.png - -#begin Pokemon/Overworld/Normal/479_wash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/479_wash.png - -#begin Pokemon/Overworld/Shiny/403.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/403.png - -#begin Pokemon/Overworld/Shiny/404.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/404.png - -#begin Pokemon/Overworld/Shiny/405.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/405.png - -#begin Pokemon/Overworld/Shiny/479.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/479.png - -#begin Pokemon/Overworld/Shiny/479_fan.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/479_fan.png - -#begin Pokemon/Overworld/Shiny/479_frost.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/479_frost.png - -#begin Pokemon/Overworld/Shiny/479_heat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/479_heat.png - -#begin Pokemon/Overworld/Shiny/479_mow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/479_mow.png - -#begin Pokemon/Overworld/Shiny/479_wash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/479_wash.png - -#begin Sounds/Cries/403.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/403.mp3 - -#begin Sounds/Cries/404.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/404.mp3 - -#begin Sounds/Cries/405.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/405.mp3 - -#begin Sounds/Cries/479.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/479.mp3 - -#begin SkyDomeResource/daycycle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/daycycle.png - -#begin SkyDomeResource/Clouds1.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/Clouds1.png - -#begin SkyDomeResource/Stars.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/Stars.png - -#begin SkyDomeResource/sun.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/sun.png - -#begin SkyDomeResource/moon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/moon.png - -#begin SkyDomeResource/CloudsWeather.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:SkyDomeResource/CloudsWeather.png - -#begin Textures/mtsilver.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/mtsilver.png - -#begin Textures/NPC/misty.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/misty.png - -#begin Songs/cerulean.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/cerulean.mp3 - -#begin Songs/intro/cerulean.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/cerulean.mp3 - -#begin Songs/RouteMusic9.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic9.mp3 - -#begin GUI/Box/BattleBox.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/BattleBox.png - -#begin Songs/lobby.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/lobby.mp3 - -#begin Songs/intro/lobby.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/lobby.mp3 - -#begin Textures/NPC/85.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/85.png - -#begin Songs/cerulean_cave.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/cerulean_cave.mp3 - -#begin Songs/pokeflute.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/pokeflute.mp3 - -#begin Songs/RouteMusic8.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic8.mp3 - -#begin Songs/intro/cerulean_cave.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/cerulean_cave.mp3 - -#begin Songs/intro/pokeflute.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/pokeflute.mp3 - -#begin Songs/intro/RouteMusic8.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/RouteMusic8.mp3 - -#begin Pokemon/Overworld/Normal/708.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/708.png - -#begin Pokemon/Overworld/Normal/709.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/709.PNG - -#begin Pokemon/Overworld/Shiny/708.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/708.png - -#begin Pokemon/Overworld/Shiny/709.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/709.png - -#begin Pokemon/Sprites/Phantump.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Phantump.png - -#begin Pokemon/Sprites/Trevenant.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Trevenant.png - -#begin Sounds/Cries/708.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/708.mp3 - -#begin Sounds/Cries/709.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/709.mp3 - -#begin Textures/NPC/Substitute.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Substitute.png - -#begin Pokemon/Egg/Templates/Menu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Egg/Templates/Menu.png - -#begin Pokemon/Egg/Templates/Back.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Egg/Templates/Back.png - -#begin Pokemon/Egg/Templates/Front.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Egg/Templates/Front.png - -#begin Sounds/Cries/420.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/420.mp3 - -#begin Sounds/Cries/421.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/421.mp3 - -#begin Sounds/Cries/590.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/590.mp3 - -#begin Sounds/Cries/591.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/591.mp3 - -#begin Sounds/Cries/595.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/595.mp3 - -#begin Sounds/Cries/596.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/596.mp3 - -#begin Sounds/Cries/597.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/597.mp3 - -#begin Sounds/Cries/598.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/598.mp3 - -#begin Pokemon/Sprites/Amoonguss.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Amoonguss.png - -#begin Pokemon/Sprites/Cherrim.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cherrim.png - -#begin Pokemon/Sprites/Cherubi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cherubi.png - -#begin Pokemon/Sprites/Ferroseed.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ferroseed.png - -#begin Pokemon/Sprites/Ferrothorn.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ferrothorn.png - -#begin Pokemon/Sprites/Foongus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Foongus.png - -#begin Pokemon/Sprites/Galvantula.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Galvantula.png - -#begin Pokemon/Sprites/Joltik.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Joltik.png - -#begin Pokemon/Overworld/Shiny/420.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/420.png - -#begin Pokemon/Overworld/Shiny/421.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/421.png - -#begin Pokemon/Overworld/Shiny/590.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/590.png - -#begin Pokemon/Overworld/Shiny/591.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/591.png - -#begin Pokemon/Overworld/Shiny/595.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/595.png - -#begin Pokemon/Overworld/Shiny/596.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/596.png - -#begin Pokemon/Overworld/Shiny/597.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/597.png - -#begin Pokemon/Overworld/Shiny/598.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/598.png - -#begin Pokemon/Overworld/Normal/420.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/420.png - -#begin Pokemon/Overworld/Normal/421.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/421.png - -#begin Pokemon/Overworld/Normal/590.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/590.png - -#begin Pokemon/Overworld/Normal/591.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/591.png - -#begin Pokemon/Overworld/Normal/595.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/595.png - -#begin Pokemon/Overworld/Normal/596.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/596.png - -#begin Pokemon/Overworld/Normal/597.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/597.png - -#begin Pokemon/Overworld/Normal/598.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/598.png - -#begin Textures/shuttle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/shuttle.png - -#begin Textures/NPC/141F.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/141F.png - -#begin Textures/NPC/142F.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/142F.png - -#begin Textures/NPC/Brock.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Brock.png - -#begin Songs/mtmoonsq.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/mtmoonsq.mp3 - -#begin Songs/RouteMusic10.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic10.mp3 - -#begin Songs/RouteMusic11.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic11.mp3 - -#begin Songs/viridian_forest.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/viridian_forest.mp3 - -#begin Songs/intro/RouteMusic10.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/RouteMusic10.mp3 - -#begin Songs/intro/RouteMusic11.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/RouteMusic11.mp3 - -#begin Songs/credits.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/credits.mp3 - -#begin Songs/indigo.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/indigo.mp3 - -#begin Songs/RouteMusic5.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/RouteMusic5.mp3 - -#begin Pokemon/Sprites/noibat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/noibat.png - -#begin Pokemon/Sprites/noivern.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/noivern.png - -#begin Pokemon/Overworld/Shiny/714.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/714.PNG - -#begin Pokemon/Overworld/Shiny/715.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/715.PNG - -#begin Pokemon/Overworld/Normal/714.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/714.PNG - -#begin Pokemon/Overworld/Normal/715.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/715.PNG - -#begin Sounds/Cries/714.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/714.mp3 - -#begin Sounds/Cries/715.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/715.mp3 - -#begin Textures/sevii.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/sevii.png - -#begin Textures/NPC/Lorelei.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Lorelei.png - -#begin Sounds/jump_ledge.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/jump_ledge.mp3 - -#begin Sounds/pickup.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/pickup.mp3 - -#begin Fonts/BMP/TextFont.png -/importer:TextureImporter -/processor:FontTextureProcessor -/processorParam:FirstCharacter= -/processorParam:PremultiplyAlpha=True -/processorParam:TextureFormat=Color -/build:Fonts/BMP/TextFont.png - -#begin Sounds/PC/pc_logon.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/PC/pc_logon.mp3 - -#begin Sounds/PC/pc_off.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/PC/pc_off.mp3 - -#begin Sounds/PC/pc_turnon.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/PC/pc_turnon.mp3 - -#begin Sounds/menu_open.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/menu_open.mp3 - -#begin Sounds/Battle/Damage/normaldamage.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/Damage/normaldamage.mp3 - -#begin Sounds/Battle/Damage/not_effective.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/Damage/not_effective.mp3 - -#begin Sounds/Battle/Damage/super_effective.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/Damage/super_effective.mp3 - -#begin Sounds/Battle/ballshake.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/ballshake.mp3 - -#begin Sounds/Battle/throw.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/throw.mp3 - -#begin Sounds/buy2.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/buy2.mp3 - -#begin Sounds/Battle/exp_max.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/exp_max.mp3 - -#begin Sounds/egg_hatch.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/egg_hatch.mp3 - -#begin Sounds/Battle/Effects/effect_pound.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/Effects/effect_pound.mp3 - -#begin Songs/intro/azalea.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Best -/build:Songs/intro/azalea.mp3 - -#begin Sounds/Battle/Effects/effect_ember.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/Effects/effect_ember.mp3 - -#begin Sounds/Battle/Effects/effect_fly.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/Effects/effect_fly.mp3 - -#begin Sounds/Battle/Effects/effect_ice1.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/Effects/effect_ice1.mp3 - -#begin Sounds/Battle/Effects/effect_poison.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/Effects/effect_poison.mp3 - -#begin Sounds/Battle/Effects/effect_thundershock2.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/Effects/effect_thundershock2.mp3 - -#begin Sounds/Battle/pokeball_land.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/pokeball_land.mp3 - -#begin Sounds/Battle/shiny.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/shiny.mp3 - -#begin Sounds/shutter.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/shutter.mp3 - -#begin Sounds/repel_use.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/repel_use.mp3 - -#begin Sounds/ice_break.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/ice_break.mp3 - -#begin Sounds/ice_crack.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/ice_crack.mp3 - -#begin Sounds/success_small.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/success_small.mp3 - -#begin Sounds/trhq_alarm.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/trhq_alarm.mp3 - -#begin Sounds/Pokegear/pokegear_off.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Pokegear/pokegear_off.mp3 - -#begin Sounds/Pokegear/pokegear_on.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Pokegear/pokegear_on.mp3 - -#begin Sounds/Contest/rankplace.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Contest/rankplace.mp3 - -#begin Sounds/teleport.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/teleport.mp3 - -#begin Textures/NPC/Looker.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Looker.png - -#begin Songs/Looker_encounter.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/Looker_encounter.mp3 - -#begin Textures/NPC/Sabrina.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Sabrina.png - -#begin Songs/ho-oh_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/ho-oh_battle.mp3 - -#begin Songs/ho-oh_battle_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/ho-oh_battle_intro.mp3 - -#begin Songs/lugia_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/lugia_battle.mp3 - -#begin Songs/lugia_battle_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/lugia_battle_intro.mp3 - -#begin Songs/suicune_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/suicune_battle.mp3 - -#begin Songs/suicune_battle_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/suicune_battle_intro.mp3 - -#begin Songs/intro/ho-oh_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/ho-oh_battle.mp3 - -#begin Songs/intro/lugia_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/lugia_battle.mp3 - -#begin Songs/intro/suicune_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/suicune_battle.mp3 - -#begin Songs/entei_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/entei_battle.mp3 - -#begin Songs/entei_battle_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/entei_battle_intro.mp3 - -#begin Songs/intro/entei_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/entei_battle.mp3 - -#begin Songs/raikou_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/raikou_battle.mp3 - -#begin Songs/raikou_battle_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/raikou_battle_intro.mp3 - -#begin Songs/intro/raikou_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/raikou_battle.mp3 - -#begin Textures/NPC/Erika.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Erika.png - -#begin Textures/NPC/MasterRoshi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/MasterRoshi.png - -#begin Songs/celadon.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/celadon.mp3 - -#begin Songs/intro/celadon.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/celadon.mp3 - -#begin Textures/Emblem/marsh.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/marsh.png - -#begin Textures/Emblem/rainbow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/rainbow.png - -#begin Sounds/magnettrain.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/magnettrain.mp3 - -#begin Textures/frontier.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/frontier.png - -#begin Textures/Emblem/volcano.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/volcano.png - -#begin Sounds/Battle/Effects/effect_thunderbolt.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Battle/Effects/effect_thunderbolt.mp3 - -#begin Pokemon/Overworld/Normal/681.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/681.PNG - -#begin Pokemon/Overworld/Normal/681_blade.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/681_blade.PNG - -#begin Pokemon/Overworld/Shiny/681.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/681.PNG - -#begin Pokemon/Overworld/Shiny/681_blade.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/681_blade.PNG - -#begin Pokemon/Sprites/Aegislash_blade.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Aegislash_blade.png - -#begin Pokemon/Sprites/Aegislash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Aegislash.png - -#begin Pokemon/Overworld/Normal/299.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/299.png - -#begin Pokemon/Overworld/Normal/302.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/302.png - -#begin Pokemon/Overworld/Normal/337.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/337.png - -#begin Pokemon/Overworld/Normal/338.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/338.png - -#begin Pokemon/Overworld/Normal/343.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/343.png - -#begin Pokemon/Overworld/Normal/344.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/344.png - -#begin Pokemon/Overworld/Normal/345.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/345.png - -#begin Pokemon/Overworld/Normal/346.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/346.png - -#begin Pokemon/Overworld/Normal/347.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/347.png - -#begin Pokemon/Overworld/Normal/348.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/348.png - -#begin Pokemon/Overworld/Normal/385.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/385.png - -#begin Pokemon/Overworld/Normal/408.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/408.png - -#begin Pokemon/Overworld/Normal/409.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/409.png - -#begin Pokemon/Overworld/Normal/410.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/410.png - -#begin Pokemon/Overworld/Normal/411.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/411.png - -#begin Pokemon/Overworld/Normal/524.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/524.png - -#begin Pokemon/Overworld/Normal/525.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/525.png - -#begin Pokemon/Overworld/Normal/526.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/526.png - -#begin Pokemon/Overworld/Normal/561.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/561.png - -#begin Pokemon/Overworld/Normal/562.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/562.png - -#begin Pokemon/Overworld/Normal/563.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/563.png - -#begin Pokemon/Overworld/Normal/564.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/564.png - -#begin Pokemon/Overworld/Normal/565.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/565.png - -#begin Pokemon/Overworld/Normal/566.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/566.png - -#begin Pokemon/Overworld/Normal/567.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/567.png - -#begin Pokemon/Overworld/Normal/605.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/605.png - -#begin Pokemon/Overworld/Normal/606.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/606.png - -#begin Pokemon/Overworld/Normal/622.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/622.png - -#begin Pokemon/Overworld/Normal/623.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/623.png - -#begin Pokemon/Overworld/Normal/679.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/679.PNG - -#begin Pokemon/Overworld/Normal/680.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/680.PNG - -#begin Pokemon/Overworld/Normal/696.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/696.PNG - -#begin Pokemon/Overworld/Normal/697.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/697.PNG - -#begin Pokemon/Overworld/Normal/698.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/698.PNG - -#begin Pokemon/Overworld/Normal/699.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/699.png - -#begin Pokemon/Overworld/Normal/703.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/703.PNG - -#begin Pokemon/Overworld/Normal/707.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/707.png - -#begin Pokemon/Overworld/Shiny/299.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/299.png - -#begin Pokemon/Overworld/Shiny/302.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/302.png - -#begin Pokemon/Overworld/Shiny/337.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/337.png - -#begin Pokemon/Overworld/Shiny/338.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/338.png - -#begin Pokemon/Overworld/Shiny/343.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/343.png - -#begin Pokemon/Overworld/Shiny/344.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/344.png - -#begin Pokemon/Overworld/Shiny/345.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/345.png - -#begin Pokemon/Overworld/Shiny/346.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/346.png - -#begin Pokemon/Overworld/Shiny/347.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/347.png - -#begin Pokemon/Overworld/Shiny/348.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/348.png - -#begin Pokemon/Overworld/Shiny/385.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/385.png - -#begin Pokemon/Overworld/Shiny/408.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/408.png - -#begin Pokemon/Overworld/Shiny/409.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/409.png - -#begin Pokemon/Overworld/Shiny/410.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/410.png - -#begin Pokemon/Overworld/Shiny/411.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/411.png - -#begin Pokemon/Overworld/Shiny/524.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/524.png - -#begin Pokemon/Overworld/Shiny/525.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/525.png - -#begin Pokemon/Overworld/Shiny/526.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/526.png - -#begin Pokemon/Overworld/Shiny/561.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/561.png - -#begin Pokemon/Overworld/Shiny/562.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/562.png - -#begin Pokemon/Overworld/Shiny/563.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/563.png - -#begin Pokemon/Overworld/Shiny/564.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/564.png - -#begin Pokemon/Overworld/Shiny/565.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/565.png - -#begin Pokemon/Overworld/Shiny/566.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/566.png - -#begin Pokemon/Overworld/Shiny/567.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/567.png - -#begin Pokemon/Overworld/Shiny/605.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/605.png - -#begin Pokemon/Overworld/Shiny/606.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/606.png - -#begin Pokemon/Overworld/Shiny/622.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/622.png - -#begin Pokemon/Overworld/Shiny/623.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/623.png - -#begin Pokemon/Overworld/Shiny/679.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/679.PNG - -#begin Pokemon/Overworld/Shiny/680.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/680.PNG - -#begin Pokemon/Overworld/Shiny/696.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/696.PNG - -#begin Pokemon/Overworld/Shiny/697.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/697.PNG - -#begin Pokemon/Overworld/Shiny/698.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/698.PNG - -#begin Pokemon/Overworld/Shiny/699.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/699.png - -#begin Pokemon/Overworld/Shiny/703.PNG -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/703.PNG - -#begin Pokemon/Overworld/Shiny/707.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/707.png - -#begin Pokemon/Sprites/amaura.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/amaura.png - -#begin Pokemon/Sprites/Anorith.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Anorith.png - -#begin Pokemon/Sprites/Archen.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Archen.png - -#begin Pokemon/Sprites/Archeops.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Archeops.png - -#begin Pokemon/Sprites/Armaldo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Armaldo.png - -#begin Pokemon/Sprites/Aurorus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Aurorus.png - -#begin Pokemon/Sprites/Baltoy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Baltoy.png - -#begin Pokemon/Sprites/Bastiodon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bastiodon.png - -#begin Pokemon/Sprites/Beheeyem.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Beheeyem.png - -#begin Pokemon/Sprites/Boldore.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Boldore.png - -#begin Pokemon/Sprites/carbink.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/carbink.png - -#begin Pokemon/Sprites/Carracosta.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Carracosta.png - -#begin Pokemon/Sprites/Claydol.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Claydol.png - -#begin Pokemon/Sprites/Cofagrigus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cofagrigus.png - -#begin Pokemon/Sprites/Cradily.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cradily.png - -#begin Pokemon/Sprites/Cranidos.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cranidos.png - -#begin Pokemon/Sprites/doublade.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/doublade.png - -#begin Pokemon/Sprites/Elgyem.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Elgyem.png - -#begin Pokemon/Sprites/Gigalith.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gigalith.png - -#begin Pokemon/Sprites/Golett.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Golett.png - -#begin Pokemon/Sprites/Golurk.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Golurk.png - -#begin Pokemon/Sprites/honedge.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/honedge.png - -#begin Pokemon/Sprites/Jirachi.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Jirachi.png - -#begin Pokemon/Sprites/klefki.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/klefki.png - -#begin Pokemon/Sprites/Lileep.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lileep.png - -#begin Pokemon/Sprites/Lunatone.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lunatone.png - -#begin Pokemon/Sprites/Nosepass.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Nosepass.png - -#begin Pokemon/Sprites/Rampardos.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Rampardos.png - -#begin Pokemon/Sprites/Roggenrola.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Roggenrola.png - -#begin Pokemon/Sprites/Sableye.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sableye.png - -#begin Pokemon/Sprites/Shieldon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shieldon.png - -#begin Pokemon/Sprites/Sigilyph.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sigilyph.png - -#begin Pokemon/Sprites/Solrock.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Solrock.png - -#begin Pokemon/Sprites/Tirtouga.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tirtouga.png - -#begin Pokemon/Sprites/tyrantrum.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/tyrantrum.png - -#begin Pokemon/Sprites/tyrunt.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/tyrunt.png - -#begin Pokemon/Sprites/Yamask.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Yamask.png - -#begin Songs/intro/space_legend_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/space_legend_battle.mp3 - -#begin Songs/intro/startower.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/intro/startower.mp3 - -#begin Songs/ancient_ruins.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/ancient_ruins.mp3 - -#begin Songs/space_legend_battle.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/space_legend_battle.mp3 - -#begin Songs/space_legend_battle_intro.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/space_legend_battle_intro.mp3 - -#begin Songs/startower.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/startower.mp3 - -#begin Textures/NPC/queen.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/queen.png - -#begin Textures/NPC/robot1.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/robot1.png - -#begin Textures/NPC/robot2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/robot2.png - -#begin Textures/NPC/robot3.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/robot3.png - -#begin Textures/chess.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/chess.png - -#begin Textures/dungeon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/dungeon.png - -#begin Textures/Rotomroom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Rotomroom.png - -#begin Textures/cyclingroad.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/cyclingroad.png - -#begin Textures/kantogates.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/kantogates.png - -#begin Textures/NPC/rock.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/rock.png - -#begin Textures/NPC/Janine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Janine.png - -#begin Textures/Emblem/soul.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/soul.png - -#begin Sounds/Cries/299.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/299.mp3 - -#begin Sounds/Cries/302.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/302.mp3 - -#begin Sounds/Cries/337.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/337.mp3 - -#begin Sounds/Cries/338.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/338.mp3 - -#begin Sounds/Cries/343.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/343.mp3 - -#begin Sounds/Cries/344.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/344.mp3 - -#begin Sounds/Cries/345.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/345.mp3 - -#begin Sounds/Cries/346.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/346.mp3 - -#begin Sounds/Cries/347.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/347.mp3 - -#begin Sounds/Cries/348.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/348.mp3 - -#begin Sounds/Cries/385.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/385.mp3 - -#begin Sounds/Cries/409.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/409.mp3 - -#begin Sounds/Cries/410.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/410.mp3 - -#begin Sounds/Cries/411.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/411.mp3 - -#begin Sounds/Cries/412.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/412.mp3 - -#begin Sounds/Cries/524.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/524.mp3 - -#begin Sounds/Cries/525.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/525.mp3 - -#begin Sounds/Cries/526.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/526.mp3 - -#begin Sounds/Cries/561.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/561.mp3 - -#begin Sounds/Cries/562.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/562.mp3 - -#begin Sounds/Cries/563.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/563.mp3 - -#begin Sounds/Cries/564.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/564.mp3 - -#begin Sounds/Cries/565.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/565.mp3 - -#begin Sounds/Cries/566.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/566.mp3 - -#begin Sounds/Cries/567.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/567.mp3 - -#begin Sounds/Cries/605.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/605.mp3 - -#begin Sounds/Cries/606.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/606.mp3 - -#begin Sounds/Cries/623.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/623.mp3 - -#begin Sounds/Cries/624.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/624.mp3 - -#begin Sounds/Cries/679.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/679.mp3 - -#begin Sounds/Cries/680.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/680.mp3 - -#begin Sounds/Cries/681.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/681.mp3 - -#begin Sounds/Cries/696.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/696.mp3 - -#begin Sounds/Cries/697.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/697.mp3 - -#begin Sounds/Cries/698.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/698.mp3 - -#begin Sounds/Cries/699.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/699.mp3 - -#begin Sounds/Cries/703.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/703.mp3 - -#begin Sounds/Cries/707.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/707.mp3 - -#begin Textures/NPC/86.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/86.png - -#begin Textures/NPC/87.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/87.png - -#begin Textures/NPC/88.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/88.png - -#begin Textures/NPC/89.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/89.png - -#begin Textures/NPC/90.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/90.png - -#begin Textures/NPC/91.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/91.png - -#begin Items/MegaStones.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Items/MegaStones.png - -#begin Textures/viridianForest.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/viridianForest.png - -#begin Pokemon/Overworld/Normal/283.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/283.png - -#begin Pokemon/Overworld/Normal/284.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/284.png - -#begin Pokemon/Overworld/Normal/290.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/290.png - -#begin Pokemon/Overworld/Normal/291.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/291.png - -#begin Pokemon/Overworld/Normal/292.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/292.png - -#begin Pokemon/Overworld/Normal/293.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/293.png - -#begin Pokemon/Overworld/Normal/294.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/294.png - -#begin Pokemon/Overworld/Normal/295.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/295.png - -#begin Pokemon/Overworld/Normal/300.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/300.png - -#begin Pokemon/Overworld/Normal/301.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/301.png - -#begin Pokemon/Overworld/Normal/303.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/303.png - -#begin Pokemon/Overworld/Normal/309.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/309.png - -#begin Pokemon/Overworld/Normal/310.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/310.png - -#begin Pokemon/Overworld/Normal/311.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/311.png - -#begin Pokemon/Overworld/Normal/312.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/312.png - -#begin Pokemon/Overworld/Normal/313.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/313.png - -#begin Pokemon/Overworld/Normal/314.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/314.png - -#begin Pokemon/Overworld/Normal/316.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/316.png - -#begin Pokemon/Overworld/Normal/317.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/317.png - -#begin Pokemon/Overworld/Normal/318.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/318.png - -#begin Pokemon/Overworld/Normal/319.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/319.png - -#begin Pokemon/Overworld/Normal/320.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/320.png - -#begin Pokemon/Overworld/Normal/321.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/321.png - -#begin Pokemon/Overworld/Normal/325.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/325.png - -#begin Pokemon/Overworld/Normal/326.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/326.png - -#begin Pokemon/Overworld/Normal/339.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/339.png - -#begin Pokemon/Overworld/Normal/340.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/340.png - -#begin Pokemon/Overworld/Normal/351.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/351.png - -#begin Pokemon/Overworld/Normal/352.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/352.png - -#begin Pokemon/Overworld/Normal/353.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/353.png - -#begin Pokemon/Overworld/Normal/354.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/354.png - -#begin Pokemon/Overworld/Normal/355.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/355.png - -#begin Pokemon/Overworld/Normal/356.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/356.png - -#begin Pokemon/Overworld/Normal/358.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/358.png - -#begin Pokemon/Overworld/Normal/359.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/359.png - -#begin Pokemon/Overworld/Normal/370.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/370.png - -#begin Pokemon/Overworld/Normal/377.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/377.png - -#begin Pokemon/Overworld/Normal/378.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/378.png - -#begin Pokemon/Overworld/Normal/379.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/379.png - -#begin Pokemon/Overworld/Normal/380.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/380.png - -#begin Pokemon/Overworld/Normal/381.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/381.png - -#begin Pokemon/Overworld/Normal/386.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/386.png - -#begin Pokemon/Overworld/Normal/386_attack.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/386_attack.png - -#begin Pokemon/Overworld/Normal/386_defense.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/386_defense.png - -#begin Pokemon/Overworld/Normal/386_speed.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/386_speed.png - -#begin Pokemon/Overworld/Shiny/283.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/283.png - -#begin Pokemon/Overworld/Shiny/284.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/284.png - -#begin Pokemon/Overworld/Shiny/290.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/290.png - -#begin Pokemon/Overworld/Shiny/291.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/291.png - -#begin Pokemon/Overworld/Shiny/292.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/292.png - -#begin Pokemon/Overworld/Shiny/293.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/293.png - -#begin Pokemon/Overworld/Shiny/294.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/294.png - -#begin Pokemon/Overworld/Shiny/295.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/295.png - -#begin Pokemon/Overworld/Shiny/300.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/300.png - -#begin Pokemon/Overworld/Shiny/301.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/301.png - -#begin Pokemon/Overworld/Shiny/303.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/303.png - -#begin Pokemon/Overworld/Shiny/309.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/309.png - -#begin Pokemon/Overworld/Shiny/310.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/310.png - -#begin Pokemon/Overworld/Shiny/311.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/311.png - -#begin Pokemon/Overworld/Shiny/312.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/312.png - -#begin Pokemon/Overworld/Shiny/313.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/313.png - -#begin Pokemon/Overworld/Shiny/314.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/314.png - -#begin Pokemon/Overworld/Shiny/316.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/316.png - -#begin Pokemon/Overworld/Shiny/317.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/317.png - -#begin Pokemon/Overworld/Shiny/318.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/318.png - -#begin Pokemon/Overworld/Shiny/319.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/319.png - -#begin Pokemon/Overworld/Shiny/320.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/320.png - -#begin Pokemon/Overworld/Shiny/321.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/321.png - -#begin Pokemon/Overworld/Shiny/325.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/325.png - -#begin Pokemon/Overworld/Shiny/326.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/326.png - -#begin Pokemon/Overworld/Shiny/339.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/339.png - -#begin Pokemon/Overworld/Shiny/340.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/340.png - -#begin Pokemon/Overworld/Shiny/351.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/351.png - -#begin Pokemon/Overworld/Shiny/352.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/352.png - -#begin Pokemon/Overworld/Shiny/353.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/353.png - -#begin Pokemon/Overworld/Shiny/354.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/354.png - -#begin Pokemon/Overworld/Shiny/355.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/355.png - -#begin Pokemon/Overworld/Shiny/356.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/356.png - -#begin Pokemon/Overworld/Shiny/358.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/358.png - -#begin Pokemon/Overworld/Shiny/359.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/359.png - -#begin Pokemon/Overworld/Shiny/370.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/370.png - -#begin Pokemon/Overworld/Shiny/377.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/377.png - -#begin Pokemon/Overworld/Shiny/378.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/378.png - -#begin Pokemon/Overworld/Shiny/379.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/379.png - -#begin Pokemon/Overworld/Shiny/380.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/380.png - -#begin Pokemon/Overworld/Shiny/381.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/381.png - -#begin Pokemon/Overworld/Shiny/386.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/386.png - -#begin Pokemon/Overworld/Shiny/386_attack.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/386_attack.png - -#begin Pokemon/Overworld/Shiny/386_defense.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/386_defense.png - -#begin Pokemon/Overworld/Shiny/386_speed.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/386_speed.png - -#begin Sounds/Cries/284.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/284.mp3 - -#begin Sounds/Cries/290.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/290.mp3 - -#begin Sounds/Cries/291.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/291.mp3 - -#begin Sounds/Cries/292.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/292.mp3 - -#begin Sounds/Cries/293.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/293.mp3 - -#begin Sounds/Cries/294.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/294.mp3 - -#begin Sounds/Cries/295.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/295.mp3 - -#begin Sounds/Cries/300.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/300.mp3 - -#begin Sounds/Cries/301.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/301.mp3 - -#begin Sounds/Cries/303.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/303.mp3 - -#begin Sounds/Cries/309.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/309.mp3 - -#begin Sounds/Cries/310.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/310.mp3 - -#begin Sounds/Cries/311.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/311.mp3 - -#begin Sounds/Cries/312.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/312.mp3 - -#begin Sounds/Cries/313.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/313.mp3 - -#begin Sounds/Cries/314.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/314.mp3 - -#begin Sounds/Cries/316.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/316.mp3 - -#begin Sounds/Cries/317.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/317.mp3 - -#begin Sounds/Cries/318.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/318.mp3 - -#begin Sounds/Cries/319.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/319.mp3 - -#begin Sounds/Cries/320.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/320.mp3 - -#begin Sounds/Cries/321.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/321.mp3 - -#begin Sounds/Cries/325.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/325.mp3 - -#begin Sounds/Cries/326.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/326.mp3 - -#begin Sounds/Cries/339.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/339.mp3 - -#begin Sounds/Cries/340.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/340.mp3 - -#begin Sounds/Cries/351.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/351.mp3 - -#begin Sounds/Cries/352.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/352.mp3 - -#begin Sounds/Cries/353.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/353.mp3 - -#begin Sounds/Cries/354.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/354.mp3 - -#begin Sounds/Cries/355.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/355.mp3 - -#begin Sounds/Cries/356.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/356.mp3 - -#begin Sounds/Cries/358.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/358.mp3 - -#begin Sounds/Cries/359.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/359.mp3 - -#begin Sounds/Cries/370.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/370.mp3 - -#begin Sounds/Cries/377.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/377.mp3 - -#begin Sounds/Cries/378.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/378.mp3 - -#begin Sounds/Cries/379.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/379.mp3 - -#begin Sounds/Cries/380.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/380.mp3 - -#begin Sounds/Cries/381.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/381.mp3 - -#begin Sounds/Cries/386.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/386.mp3 - -#begin Pokemon/Sprites/Absol.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Absol.png - -#begin Pokemon/Sprites/Banette.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Banette.png - -#begin Pokemon/Sprites/Barboach.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Barboach.png - -#begin Pokemon/Sprites/Castform.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Castform.png - -#begin Pokemon/Sprites/Chimecho.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Chimecho.png - -#begin Pokemon/Sprites/Chingling.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Chingling.png - -#begin Pokemon/Sprites/Carvanha.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Carvanha.png - -#begin Pokemon/Sprites/Delcatty.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Delcatty.png - -#begin Pokemon/Sprites/Deoxys.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Deoxys.png - -#begin Pokemon/Sprites/Deoxys_attack.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Deoxys_attack.png - -#begin Pokemon/Sprites/Deoxys_defense.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Deoxys_defense.png - -#begin Pokemon/Sprites/Deoxys_speed.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Deoxys_speed.png - -#begin Pokemon/Sprites/Dusclops.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dusclops.png - -#begin Pokemon/Sprites/Duskull.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Duskull.png - -#begin Pokemon/Sprites/Electrike.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Electrike.png - -#begin Pokemon/Sprites/Exploud.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Exploud.png - -#begin Pokemon/Sprites/Grumpig.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Grumpig.png - -#begin Pokemon/Sprites/Gulpin.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gulpin.png - -#begin Pokemon/Sprites/Illumise.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Illumise.png - -#begin Pokemon/Sprites/Kecleon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kecleon.png - -#begin Pokemon/Sprites/Latias.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Latias.png - -#begin Pokemon/Sprites/Latios.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Latios.png - -#begin Pokemon/Sprites/Loudred.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Loudred.png - -#begin Pokemon/Sprites/Luvdisc.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Luvdisc.png - -#begin Pokemon/Sprites/Manectric.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Manectric.png - -#begin Pokemon/Sprites/Masquerain.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Masquerain.png - -#begin Pokemon/Sprites/Mawile.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mawile.png - -#begin Pokemon/Sprites/Minun.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Minun.png - -#begin Pokemon/Sprites/Nincada.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Nincada.png - -#begin Pokemon/Sprites/Ninjask.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Ninjask.png - -#begin Pokemon/Sprites/Plusle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Plusle.png - -#begin Pokemon/Sprites/Regice.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Regice.png - -#begin Pokemon/Sprites/Regirock.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Regirock.png - -#begin Pokemon/Sprites/Registeel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Registeel.png - -#begin Pokemon/Sprites/Sharpedo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sharpedo.png - -#begin Pokemon/Sprites/Shedinja.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shedinja.png - -#begin Pokemon/Sprites/Shuppet.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shuppet.png - -#begin Pokemon/Sprites/Skitty.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Skitty.png - -#begin Pokemon/Sprites/Spoink.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Spoink.png - -#begin Pokemon/Sprites/Surskit.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Surskit.png - -#begin Pokemon/Sprites/Swalot.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Swalot.png - -#begin Pokemon/Sprites/Volbeat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Volbeat.png - -#begin Pokemon/Sprites/Wailmer.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wailmer.png - -#begin Pokemon/Sprites/Wailord.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wailord.png - -#begin Pokemon/Sprites/Whiscash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Whiscash.png - -#begin Pokemon/Sprites/Whismur.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Whismur.png - -#begin Textures/berryForest.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/berryForest.png - -#begin Sounds/Cries/283.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/283.mp3 - -#begin Sounds/Cries/401.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/401.mp3 - -#begin Sounds/Cries/402.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/402.mp3 - -#begin Sounds/Cries/408.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/408.mp3 - -#begin Sounds/Cries/413.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/413.mp3 - -#begin Sounds/Cries/414.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/414.mp3 - -#begin Sounds/Cries/417.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/417.mp3 - -#begin Sounds/Cries/425.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/425.mp3 - -#begin Sounds/Cries/426.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/426.mp3 - -#begin Sounds/Cries/431.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/431.mp3 - -#begin Sounds/Cries/432.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/432.mp3 - -#begin Sounds/Cries/433.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/433.mp3 - -#begin Sounds/Cries/434.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/434.mp3 - -#begin Sounds/Cries/435.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/435.mp3 - -#begin Sounds/Cries/441.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/441.mp3 - -#begin Sounds/Cries/455.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/455.mp3 - -#begin Sounds/Cries/480.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/480.mp3 - -#begin Sounds/Cries/481.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/481.mp3 - -#begin Sounds/Cries/482.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/482.mp3 - -#begin Sounds/Cries/483.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/483.mp3 - -#begin Sounds/Cries/484.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/484.mp3 - -#begin Sounds/Cries/485.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/485.mp3 - -#begin Sounds/Cries/486.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/486.mp3 - -#begin Sounds/Cries/487.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/487.mp3 - -#begin Sounds/Cries/488.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/488.mp3 - -#begin Sounds/Cries/489.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/489.mp3 - -#begin Sounds/Cries/490.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/490.mp3 - -#begin Sounds/Cries/491.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/491.mp3 - -#begin Sounds/Cries/492.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/492.mp3 - -#begin Sounds/Cries/492_sky.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/492_sky.mp3 - -#begin Sounds/Cries/493.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/493.mp3 - -#begin Pokemon/Overworld/Normal/401.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/401.png - -#begin Pokemon/Overworld/Normal/402.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/402.png - -#begin Pokemon/Overworld/Normal/412.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/412.png - -#begin Pokemon/Overworld/Normal/412_sandy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/412_sandy.png - -#begin Pokemon/Overworld/Normal/412_trash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/412_trash.png - -#begin Pokemon/Overworld/Normal/413.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/413.png - -#begin Pokemon/Overworld/Normal/413_sandy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/413_sandy.png - -#begin Pokemon/Overworld/Normal/413_trash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/413_trash.png - -#begin Pokemon/Overworld/Normal/414.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/414.png - -#begin Pokemon/Overworld/Normal/417.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/417.png - -#begin Pokemon/Overworld/Normal/425.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/425.png - -#begin Pokemon/Overworld/Normal/426.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/426.png - -#begin Pokemon/Overworld/Normal/431.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/431.png - -#begin Pokemon/Overworld/Normal/432.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/432.png - -#begin Pokemon/Overworld/Normal/433.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/433.png - -#begin Pokemon/Overworld/Normal/434.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/434.png - -#begin Pokemon/Overworld/Normal/435.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/435.png - -#begin Pokemon/Overworld/Normal/441.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/441.png - -#begin Pokemon/Overworld/Normal/455.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/455.png - -#begin Pokemon/Overworld/Normal/480.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/480.png - -#begin Pokemon/Overworld/Normal/481.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/481.png - -#begin Pokemon/Overworld/Normal/482.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/482.png - -#begin Pokemon/Overworld/Normal/483.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/483.png - -#begin Pokemon/Overworld/Normal/484.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/484.png - -#begin Pokemon/Overworld/Normal/485.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/485.png - -#begin Pokemon/Overworld/Normal/486.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/486.png - -#begin Pokemon/Overworld/Normal/487.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/487.png - -#begin Pokemon/Overworld/Normal/487_origin.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/487_origin.png - -#begin Pokemon/Overworld/Normal/488.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/488.png - -#begin Pokemon/Overworld/Normal/489.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/489.png - -#begin Pokemon/Overworld/Normal/490.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/490.png - -#begin Pokemon/Overworld/Normal/491.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/491.png - -#begin Pokemon/Overworld/Normal/492.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/492.png - -#begin Pokemon/Overworld/Normal/492_sky.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/492_sky.png - -#begin Pokemon/Overworld/Normal/493.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493.png - -#begin Pokemon/Overworld/Normal/493_bug.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_bug.png - -#begin Pokemon/Overworld/Normal/493_dark.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_dark.png - -#begin Pokemon/Overworld/Normal/493_dragon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_dragon.png - -#begin Pokemon/Overworld/Normal/493_electric.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_electric.png - -#begin Pokemon/Overworld/Normal/493_fighting.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_fighting.png - -#begin Pokemon/Overworld/Normal/493_fire.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_fire.png - -#begin Pokemon/Overworld/Normal/493_flying.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_flying.png - -#begin Pokemon/Overworld/Normal/493_ghost.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_ghost.png - -#begin Pokemon/Overworld/Normal/493_grass.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_grass.png - -#begin Pokemon/Overworld/Normal/493_ground.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_ground.png - -#begin Pokemon/Overworld/Normal/493_ice.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_ice.png - -#begin Pokemon/Overworld/Normal/493_normal.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_normal.png - -#begin Pokemon/Overworld/Normal/493_poison.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_poison.png - -#begin Pokemon/Overworld/Normal/493_psychic.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_psychic.png - -#begin Pokemon/Overworld/Normal/493_rock.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_rock.png - -#begin Pokemon/Overworld/Normal/493_steel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_steel.png - -#begin Pokemon/Overworld/Normal/493_unknown.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_unknown.png - -#begin Pokemon/Overworld/Normal/493_water.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_water.png - -#begin Pokemon/Overworld/Normal/493_fairy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/493_fairy.png - -#begin Pokemon/Overworld/Shiny/401.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/401.png - -#begin Pokemon/Overworld/Shiny/402.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/402.png - -#begin Pokemon/Overworld/Shiny/412.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/412.png - -#begin Pokemon/Overworld/Shiny/412_sandy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/412_sandy.png - -#begin Pokemon/Overworld/Shiny/412_trash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/412_trash.png - -#begin Pokemon/Overworld/Shiny/413.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/413.png - -#begin Pokemon/Overworld/Shiny/413_sandy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/413_sandy.png - -#begin Pokemon/Overworld/Shiny/413_trash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/413_trash.png - -#begin Pokemon/Overworld/Shiny/414.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/414.png - -#begin Pokemon/Overworld/Shiny/417.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/417.png - -#begin Pokemon/Overworld/Shiny/425.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/425.png - -#begin Pokemon/Overworld/Shiny/426.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/426.png - -#begin Pokemon/Overworld/Shiny/431.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/431.png - -#begin Pokemon/Overworld/Shiny/432.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/432.png - -#begin Pokemon/Overworld/Shiny/433.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/433.png - -#begin Pokemon/Overworld/Shiny/434.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/434.png - -#begin Pokemon/Overworld/Shiny/435.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/435.png - -#begin Pokemon/Overworld/Shiny/441.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/441.png - -#begin Pokemon/Overworld/Shiny/455.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/455.png - -#begin Pokemon/Overworld/Shiny/480.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/480.png - -#begin Pokemon/Overworld/Shiny/481.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/481.png - -#begin Pokemon/Overworld/Shiny/482.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/482.png - -#begin Pokemon/Overworld/Shiny/485.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/485.png - -#begin Pokemon/Overworld/Shiny/486.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/486.png - -#begin Pokemon/Overworld/Shiny/487.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/487.png - -#begin Pokemon/Overworld/Shiny/487_origin.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/487_origin.png - -#begin Pokemon/Overworld/Shiny/488.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/488.png - -#begin Pokemon/Overworld/Shiny/489.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/489.png - -#begin Pokemon/Overworld/Shiny/490.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/490.png - -#begin Pokemon/Overworld/Shiny/491.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/491.png - -#begin Pokemon/Overworld/Shiny/492.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/492.png - -#begin Pokemon/Overworld/Shiny/492_sky.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/492_sky.png - -#begin Pokemon/Overworld/Shiny/493.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493.png - -#begin Pokemon/Overworld/Shiny/493_bug.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_bug.png - -#begin Pokemon/Overworld/Shiny/493_dark.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_dark.png - -#begin Pokemon/Overworld/Shiny/493_dragon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_dragon.png - -#begin Pokemon/Overworld/Shiny/493_electric.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_electric.png - -#begin Pokemon/Overworld/Shiny/493_fairy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_fairy.png - -#begin Pokemon/Overworld/Shiny/493_fighting.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_fighting.png - -#begin Pokemon/Overworld/Shiny/493_fire.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_fire.png - -#begin Pokemon/Overworld/Shiny/493_flying.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_flying.png - -#begin Pokemon/Overworld/Shiny/493_ghost.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_ghost.png - -#begin Pokemon/Overworld/Shiny/493_grass.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_grass.png - -#begin Pokemon/Overworld/Shiny/493_ground.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_ground.png - -#begin Pokemon/Overworld/Shiny/493_ice.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_ice.png - -#begin Pokemon/Overworld/Shiny/493_normal.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_normal.png - -#begin Pokemon/Overworld/Shiny/493_poison.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_poison.png - -#begin Pokemon/Overworld/Shiny/493_psychic.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_psychic.png - -#begin Pokemon/Overworld/Shiny/493_rock.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_rock.png - -#begin Pokemon/Overworld/Shiny/493_steel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_steel.png - -#begin Pokemon/Overworld/Shiny/493_unknown.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_unknown.png - -#begin Pokemon/Overworld/Shiny/493_water.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/493_water.png - -#begin Pokemon/Sprites/Azelf.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Azelf.png - -#begin Pokemon/Sprites/Burmy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Burmy.png - -#begin Pokemon/Sprites/Burmy_sand.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Burmy_sand.png - -#begin Pokemon/Sprites/Burmy_trash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Burmy_trash.png - -#begin Pokemon/Sprites/Chatot.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Chatot.png - -#begin Pokemon/Sprites/Cresselia.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cresselia.png - -#begin Pokemon/Sprites/Darkrai.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Darkrai.png - -#begin Pokemon/Sprites/Dialga.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dialga.png - -#begin Pokemon/Sprites/Drifblim.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Drifblim.png - -#begin Pokemon/Sprites/Drifloon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Drifloon.png - -#begin Pokemon/Sprites/Girantina_origin.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Girantina_origin.png - -#begin Pokemon/Sprites/Giratina.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Giratina.png - -#begin Pokemon/Sprites/Glameow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Glameow.png - -#begin Pokemon/Sprites/Heatran.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Heatran.png - -#begin Pokemon/Sprites/Kricketot.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kricketot.png - -#begin Pokemon/Sprites/Kricketune.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kricketune.png - -#begin Pokemon/Sprites/Manaphy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Manaphy.png - -#begin Pokemon/Sprites/Mesprit.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mesprit.png - -#begin Pokemon/Sprites/Mothim.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mothim.png - -#begin Pokemon/Sprites/Pachirisu.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pachirisu.png - -#begin Pokemon/Sprites/Palkia.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Palkia.png - -#begin Pokemon/Sprites/Phione.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Phione.png - -#begin Pokemon/Sprites/Purugly.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Purugly.png - -#begin Pokemon/Sprites/Regigigas.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Regigigas.png - -#begin Pokemon/Sprites/Shaymin.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shaymin.png - -#begin Pokemon/Sprites/Shaymin_sky.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shaymin_sky.png - -#begin Pokemon/Sprites/Skuntank.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Skuntank.png - -#begin Pokemon/Sprites/Stunky.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Stunky.png - -#begin Pokemon/Sprites/Uxie.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Uxie.png - -#begin Pokemon/Sprites/Wormadam.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wormadam.png - -#begin Pokemon/Sprites/Wormadam_sand.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wormadam_sand.png - -#begin Pokemon/Sprites/Wormadam_trash.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Wormadam_trash.png - -#begin Pokemon/Overworld/Normal/494.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/494.png - -#begin Pokemon/Overworld/Normal/517.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/517.png - -#begin Pokemon/Overworld/Normal/518.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/518.png - -#begin Pokemon/Overworld/Normal/527.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/527.png - -#begin Pokemon/Overworld/Normal/528.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/528.png - -#begin Pokemon/Overworld/Normal/529.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/529.png - -#begin Pokemon/Overworld/Normal/530.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/530.png - -#begin Pokemon/Overworld/Normal/532.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/532.png - -#begin Pokemon/Overworld/Normal/533.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/533.png - -#begin Pokemon/Overworld/Normal/534.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/534.png - -#begin Pokemon/Overworld/Normal/538.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/538.png - -#begin Pokemon/Overworld/Normal/539.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/539.png - -#begin Pokemon/Overworld/Normal/543.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/543.png - -#begin Pokemon/Overworld/Normal/544.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/544.png - -#begin Pokemon/Overworld/Normal/545.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/545.png - -#begin Pokemon/Overworld/Normal/548.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/548.png - -#begin Pokemon/Overworld/Normal/549.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/549.png - -#begin Pokemon/Overworld/Normal/550.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/550.png - -#begin Pokemon/Overworld/Normal/554.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/554.png - -#begin Pokemon/Overworld/Normal/555.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/555.png - -#begin Pokemon/Overworld/Normal/559.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/559.png - -#begin Pokemon/Overworld/Normal/560.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/560.png - -#begin Pokemon/Overworld/Normal/568.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/568.png - -#begin Pokemon/Overworld/Normal/569.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/569.png - -#begin Pokemon/Overworld/Normal/572.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/572.png - -#begin Pokemon/Overworld/Normal/573.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/573.png - -#begin Pokemon/Overworld/Normal/574.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/574.png - -#begin Pokemon/Overworld/Normal/575.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/575.png - -#begin Pokemon/Overworld/Normal/576.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/576.png - -#begin Pokemon/Overworld/Normal/577.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/577.png - -#begin Pokemon/Overworld/Normal/578.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/578.png - -#begin Pokemon/Overworld/Normal/579.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/579.png - -#begin Pokemon/Overworld/Normal/587.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/587.png - -#begin Pokemon/Overworld/Normal/588.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/588.png - -#begin Pokemon/Overworld/Normal/589.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/589.png - -#begin Pokemon/Overworld/Normal/594.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/594.png - -#begin Pokemon/Overworld/Normal/615.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/615.png - -#begin Pokemon/Overworld/Normal/616.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/616.png - -#begin Pokemon/Overworld/Normal/617.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/617.png - -#begin Pokemon/Overworld/Normal/618.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/618.png - -#begin Pokemon/Overworld/Normal/619.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/619.png - -#begin Pokemon/Overworld/Normal/620.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/620.png - -#begin Pokemon/Overworld/Normal/624.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/624.png - -#begin Pokemon/Overworld/Normal/625.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/625.png - -#begin Pokemon/Overworld/Normal/632.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/632.png - -#begin Pokemon/Overworld/Normal/638.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/638.png - -#begin Pokemon/Overworld/Normal/639.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/639.png - -#begin Pokemon/Overworld/Normal/640.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/640.png - -#begin Pokemon/Overworld/Normal/641.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/641.png - -#begin Pokemon/Overworld/Normal/642.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/642.png - -#begin Pokemon/Overworld/Normal/645.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/645.png - -#begin Pokemon/Overworld/Normal/647.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/647.png - -#begin Pokemon/Overworld/Normal/648.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/648.png - -#begin Pokemon/Overworld/Normal/649.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/649.png - -#begin Pokemon/Overworld/Shiny/494.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/494.png - -#begin Pokemon/Overworld/Shiny/517.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/517.png - -#begin Pokemon/Overworld/Shiny/518.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/518.png - -#begin Pokemon/Overworld/Shiny/527.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/527.png - -#begin Pokemon/Overworld/Shiny/528.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/528.png - -#begin Pokemon/Overworld/Shiny/529.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/529.png - -#begin Pokemon/Overworld/Shiny/530.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/530.png - -#begin Pokemon/Overworld/Shiny/532.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/532.png - -#begin Pokemon/Overworld/Shiny/533.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/533.png - -#begin Pokemon/Overworld/Shiny/534.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/534.png - -#begin Pokemon/Overworld/Shiny/538.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/538.png - -#begin Pokemon/Overworld/Shiny/539.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/539.png - -#begin Pokemon/Overworld/Shiny/543.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/543.png - -#begin Pokemon/Overworld/Shiny/544.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/544.png - -#begin Pokemon/Overworld/Shiny/545.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/545.png - -#begin Pokemon/Overworld/Shiny/548.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/548.png - -#begin Pokemon/Overworld/Shiny/549.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/549.png - -#begin Pokemon/Overworld/Shiny/550.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/550.png - -#begin Pokemon/Overworld/Shiny/554.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/554.png - -#begin Pokemon/Overworld/Shiny/555.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/555.png - -#begin Pokemon/Overworld/Shiny/559.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/559.png - -#begin Pokemon/Overworld/Shiny/560.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/560.png - -#begin Pokemon/Overworld/Shiny/568.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/568.png - -#begin Pokemon/Overworld/Shiny/569.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/569.png - -#begin Pokemon/Overworld/Shiny/572.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/572.png - -#begin Pokemon/Overworld/Shiny/573.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/573.png - -#begin Pokemon/Overworld/Shiny/574.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/574.png - -#begin Pokemon/Overworld/Shiny/575.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/575.png - -#begin Pokemon/Overworld/Shiny/576.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/576.png - -#begin Pokemon/Overworld/Shiny/577.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/577.png - -#begin Pokemon/Overworld/Shiny/578.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/578.png - -#begin Pokemon/Overworld/Shiny/579.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/579.png - -#begin Pokemon/Overworld/Shiny/587.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/587.png - -#begin Pokemon/Overworld/Shiny/588.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/588.png - -#begin Pokemon/Overworld/Shiny/589.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/589.png - -#begin Pokemon/Overworld/Shiny/594.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/594.png - -#begin Pokemon/Overworld/Shiny/615.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/615.png - -#begin Pokemon/Overworld/Shiny/616.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/616.png - -#begin Pokemon/Overworld/Shiny/617.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/617.png - -#begin Pokemon/Overworld/Shiny/618.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/618.png - -#begin Pokemon/Overworld/Shiny/619.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/619.png - -#begin Pokemon/Overworld/Shiny/620.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/620.png - -#begin Pokemon/Overworld/Shiny/624.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/624.png - -#begin Pokemon/Overworld/Shiny/625.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/625.png - -#begin Pokemon/Overworld/Shiny/632.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/632.png - -#begin Pokemon/Overworld/Shiny/638.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/638.png - -#begin Pokemon/Overworld/Shiny/639.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/639.png - -#begin Pokemon/Overworld/Shiny/640.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/640.png - -#begin Pokemon/Overworld/Shiny/641.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/641.png - -#begin Pokemon/Overworld/Shiny/642.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/642.png - -#begin Pokemon/Overworld/Shiny/645.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/645.png - -#begin Pokemon/Overworld/Shiny/647.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/647.png - -#begin Pokemon/Overworld/Shiny/648.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/648.png - -#begin Pokemon/Overworld/Shiny/649.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/649.png - -#begin Pokemon/Sprites/Accelgor.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Accelgor.png - -#begin Pokemon/Sprites/Alomomola.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Alomomola.png - -#begin Pokemon/Sprites/Basculin.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Basculin.png - -#begin Pokemon/Sprites/Bisharp.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Bisharp.png - -#begin Pokemon/Sprites/Carnivine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Carnivine.png - -#begin Pokemon/Sprites/Cinccino.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cinccino.png - -#begin Pokemon/Sprites/Cobalion.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Cobalion.png - -#begin Pokemon/Sprites/Conkeldurr.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Conkeldurr.png - -#begin Pokemon/Sprites/Darmanitan.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Darmanitan.png - -#begin Pokemon/Sprites/Darmanitan_zen.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Darmanitan_zen.png - -#begin Pokemon/Sprites/Darumaka.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Darumaka.png - -#begin Pokemon/Sprites/Drilbur.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Drilbur.png - -#begin Pokemon/Sprites/Duosion.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Duosion.png - -#begin Pokemon/Sprites/Durant.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Durant.png - -#begin Pokemon/Sprites/Emolga.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Emolga.png - -#begin Pokemon/Sprites/Escavalier.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Escavalier.png - -#begin Pokemon/Sprites/Excadrill.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Excadrill.png - -#begin Pokemon/Sprites/Garbodor.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Garbodor.png - -#begin Pokemon/Sprites/Genesect.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Genesect.png - -#begin Pokemon/Sprites/Genesect_burn.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Genesect_burn.png - -#begin Pokemon/Sprites/Genesect_chill.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Genesect_chill.png - -#begin Pokemon/Sprites/Genesect_douse.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Genesect_douse.png - -#begin Pokemon/Sprites/genesect_shock.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/genesect_shock.png - -#begin Pokemon/Sprites/Gothita.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gothita.png - -#begin Pokemon/Sprites/Gothitelle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gothitelle.png - -#begin Pokemon/Sprites/Gothorita.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gothorita.png - -#begin Pokemon/Sprites/Gurdurr.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Gurdurr.png - -#begin Pokemon/Sprites/Karrablast.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Karrablast.png - -#begin Pokemon/Sprites/Keldeo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Keldeo.png - -#begin Pokemon/Sprites/Keldeo_resolute.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Keldeo_resolute.png - -#begin Pokemon/Sprites/Kyurem.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kyurem.png - -#begin Pokemon/Sprites/Kyurem_black.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kyurem_black.png - -#begin Pokemon/Sprites/Kyurem_white.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Kyurem_white.png - -#begin Pokemon/Sprites/Landorus_therian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Landorus_therian.png - -#begin Pokemon/Sprites/Landorus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Landorus.png - -#begin Pokemon/Sprites/Lilligant.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Lilligant.png - -#begin Pokemon/Sprites/Meloetta.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Meloetta.png - -#begin Pokemon/Sprites/Meloetta_pirouette.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Meloetta_pirouette.png - -#begin Pokemon/Sprites/Mienfoo.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mienfoo.png - -#begin Pokemon/Sprites/Mienshao.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Mienshao.png - -#begin Pokemon/Sprites/Minccino.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Minccino.png - -#begin Pokemon/Sprites/Munna.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Munna.png - -#begin Pokemon/Sprites/Musharna.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Musharna.png - -#begin Pokemon/Sprites/Pawniard.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pawniard.png - -#begin Pokemon/Sprites/Petilil.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Petilil.png - -#begin Pokemon/Sprites/Reshiram.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Reshiram.png - -#begin Pokemon/Sprites/Reuniclus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Reuniclus.png - -#begin Pokemon/Sprites/Sawk.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Sawk.png - -#begin Pokemon/Sprites/Scolipede.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Scolipede.png - -#begin Pokemon/Sprites/Scrafty.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Scrafty.png - -#begin Pokemon/Sprites/Scraggy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Scraggy.png - -#begin Pokemon/Sprites/Shelmet.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Shelmet.png - -#begin Pokemon/Sprites/Solosis.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Solosis.png - -#begin Pokemon/Sprites/Stunfisk.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Stunfisk.png - -#begin Pokemon/Sprites/Swoobat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Swoobat.png - -#begin Pokemon/Sprites/Terrakion.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Terrakion.png - -#begin Pokemon/Sprites/Throh.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Throh.png - -#begin Pokemon/Sprites/Thundurus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Thundurus.png - -#begin Pokemon/Sprites/Thundurus_therian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Thundurus_therian.png - -#begin Pokemon/Sprites/Timburr.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Timburr.png - -#begin Pokemon/Sprites/Tornadus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tornadus.png - -#begin Pokemon/Sprites/Tornadus_therian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Tornadus_therian.png - -#begin Pokemon/Sprites/Trubbish.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Trubbish.png - -#begin Pokemon/Sprites/Venipede.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Venipede.png - -#begin Pokemon/Sprites/Victini.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Victini.png - -#begin Pokemon/Sprites/Virizion.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Virizion.png - -#begin Pokemon/Sprites/Whirlipede.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Whirlipede.png - -#begin Pokemon/Sprites/Woobat.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Woobat.png - -#begin Pokemon/Sprites/Zekrom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Zekrom.png - -#begin Sounds/Cries/494.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/494.mp3 - -#begin Sounds/Cries/517.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/517.mp3 - -#begin Sounds/Cries/518.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/518.mp3 - -#begin Sounds/Cries/527.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/527.mp3 - -#begin Sounds/Cries/528.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/528.mp3 - -#begin Sounds/Cries/529.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/529.mp3 - -#begin Sounds/Cries/530.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/530.mp3 - -#begin Sounds/Cries/532.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/532.mp3 - -#begin Sounds/Cries/533.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/533.mp3 - -#begin Sounds/Cries/534.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/534.mp3 - -#begin Sounds/Cries/538.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/538.mp3 - -#begin Sounds/Cries/539.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/539.mp3 - -#begin Sounds/Cries/543.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/543.mp3 - -#begin Sounds/Cries/544.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/544.mp3 - -#begin Sounds/Cries/545.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/545.mp3 - -#begin Sounds/Cries/548.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/548.mp3 - -#begin Sounds/Cries/549.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/549.mp3 - -#begin Sounds/Cries/550.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/550.mp3 - -#begin Sounds/Cries/554.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/554.mp3 - -#begin Sounds/Cries/555.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/555.mp3 - -#begin Sounds/Cries/559.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/559.mp3 - -#begin Sounds/Cries/560.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/560.mp3 - -#begin Sounds/Cries/568.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/568.mp3 - -#begin Sounds/Cries/569.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/569.mp3 - -#begin Sounds/Cries/572.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/572.mp3 - -#begin Sounds/Cries/573.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/573.mp3 - -#begin Sounds/Cries/574.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/574.mp3 - -#begin Sounds/Cries/575.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/575.mp3 - -#begin Sounds/Cries/576.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/576.mp3 - -#begin Sounds/Cries/577.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/577.mp3 - -#begin Sounds/Cries/578.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/578.mp3 - -#begin Sounds/Cries/579.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/579.mp3 - -#begin Sounds/Cries/587.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/587.mp3 - -#begin Sounds/Cries/588.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/588.mp3 - -#begin Sounds/Cries/589.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/589.mp3 - -#begin Sounds/Cries/594.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/594.mp3 - -#begin Sounds/Cries/615.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/615.mp3 - -#begin Sounds/Cries/616.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/616.mp3 - -#begin Sounds/Cries/617.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/617.mp3 - -#begin Sounds/Cries/618.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/618.mp3 - -#begin Sounds/Cries/619.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/619.mp3 - -#begin Sounds/Cries/620.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/620.mp3 - -#begin Sounds/Cries/622.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/622.mp3 - -#begin Sounds/Cries/625.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/625.mp3 - -#begin Sounds/Cries/631.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/631.mp3 - -#begin Sounds/Cries/632.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/632.mp3 - -#begin Sounds/Cries/638.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/638.mp3 - -#begin Sounds/Cries/639.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/639.mp3 - -#begin Sounds/Cries/640.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/640.mp3 - -#begin Sounds/Cries/641.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/641.mp3 - -#begin Sounds/Cries/642.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/642.mp3 - -#begin Sounds/Cries/643.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/643.mp3 - -#begin Sounds/Cries/644.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/644.mp3 - -#begin Sounds/Cries/645.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/645.mp3 - -#begin Sounds/Cries/646.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/646.mp3 - -#begin Sounds/Cries/647.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/647.mp3 - -#begin Sounds/Cries/648.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/648.mp3 - -#begin Sounds/Cries/649.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/649.mp3 - -#begin GUI/Box/Sparkle.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Box/Sparkle.png - -#begin Pokemon/Sprites/Arceus_bug.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_bug.png - -#begin Pokemon/Sprites/Arceus_dark.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_dark.png - -#begin Pokemon/Sprites/Arceus_dragon.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_dragon.png - -#begin Pokemon/Sprites/Arceus_electric.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_electric.png - -#begin Pokemon/Sprites/Arceus_fairy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_fairy.png - -#begin Pokemon/Sprites/Arceus_fighting.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_fighting.png - -#begin Pokemon/Sprites/Arceus_fire.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_fire.png - -#begin Pokemon/Sprites/Arceus_flying.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_flying.png - -#begin Pokemon/Sprites/Arceus_ghost.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_ghost.png - -#begin Pokemon/Sprites/Arceus_grass.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_grass.png - -#begin Pokemon/Sprites/Arceus_ground.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_ground.png - -#begin Pokemon/Sprites/Arceus_ice.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_ice.png - -#begin Pokemon/Sprites/Arceus_poison.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_poison.png - -#begin Pokemon/Sprites/Arceus_psychic.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_psychic.png - -#begin Pokemon/Sprites/Arceus_rock.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_rock.png - -#begin Pokemon/Sprites/Arceus_steel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_steel.png - -#begin Pokemon/Sprites/Arceus_water.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus_water.png - -#begin Pokemon/Sprites/Arceus.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Arceus.png - -#begin Items/Plates.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Items/Plates.png - -#begin Pokemon/Overworld/Shiny/483.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/483.png - -#begin Pokemon/Overworld/Shiny/484.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/484.png - -#begin Pokemon/Overworld/Shiny/641_therian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/641_therian.png - -#begin Pokemon/Overworld/Shiny/642_therian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/642_therian.png - -#begin Pokemon/Overworld/Shiny/645_therian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/645_therian.png - -#begin Pokemon/Overworld/Normal/641_therian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/641_therian.png - -#begin Pokemon/Overworld/Normal/642_therian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/642_therian.png - -#begin Pokemon/Overworld/Normal/645_therian.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/645_therian.png - -#begin Pokemon/Sprites/Pichu_spiky-eared.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Pichu_spiky-eared.png - -#begin Pokemon/Sprites/Basculin_blue.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Basculin_blue.png - -#begin Pokemon/Overworld/Normal/550_blue.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/550_blue.png - -#begin Pokemon/Overworld/Shiny/550_blue.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/550_blue.png - -#begin Pokemon/Sprites/Dialga_primal.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Dialga_primal.png - -#begin Pokemon/Overworld/Normal/483_primal.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/483_primal.png - -#begin Pokemon/Overworld/Shiny/483_primal.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/483_primal.png - -#begin Textures/kolben.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/kolben.png - -#begin Textures/NPC/Aaron.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Aaron.png - -#begin Textures/NPC/daniel.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/daniel.png - -#begin Textures/NPC/daziman.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/daziman.png - -#begin Textures/NPC/Enethil.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Enethil.png - -#begin Textures/NPC/Fanta.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Fanta.png - -#begin Textures/NPC/Haydos.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Haydos.png - -#begin Textures/NPC/HCSwagmar.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/HCSwagmar.png - -#begin Textures/NPC/Malc.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Malc.png - -#begin Textures/NPC/tornado.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/tornado.png - -#begin Textures/TVs/Anime.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Anime.png - -#begin Textures/TVs/benwork.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/benwork.png - -#begin Textures/TVs/Blue.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Blue.png - -#begin Textures/TVs/BSOD.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/BSOD.png - -#begin Textures/TVs/Crystal.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Crystal.png - -#begin Textures/TVs/Emerald.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Emerald.png - -#begin Textures/TVs/GameGrumps.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/GameGrumps.png - -#begin Textures/TVs/Gold.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Gold.png - -#begin Textures/TVs/inception.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/inception.png - -#begin Textures/TVs/Kolben.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Kolben.png - -#begin Textures/TVs/MarioKart8.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/MarioKart8.png - -#begin Textures/TVs/Nyan.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Nyan.png - -#begin Textures/TVs/office.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/office.png - -#begin Textures/TVs/P3d.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/P3d.png - -#begin Textures/TVs/Pong.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Pong.png - -#begin Textures/TVs/PSwebCode.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/PSwebCode.png - -#begin Textures/TVs/Red.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Red.png - -#begin Textures/TVs/RickRolled.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/RickRolled.png - -#begin Textures/TVs/RickRolled2.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/RickRolled2.png - -#begin Textures/TVs/Ruby.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Ruby.png - -#begin Textures/TVs/Sapphire.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Sapphire.png - -#begin Textures/TVs/Silver.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Silver.png - -#begin Textures/TVs/webcode.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/webcode.png - -#begin Textures/TVs/website.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/website.png - -#begin Textures/TVs/webwork.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/webwork.png - -#begin Textures/TVs/work.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/work.png - -#begin Textures/TVs/Yellow.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/TVs/Yellow.png - -#begin Fonts/BMP/Braille.bmp -/importer:TextureImporter -/processor:FontTextureProcessor -/processorParam:FirstCharacter= -/processorParam:PremultiplyAlpha=True -/processorParam:TextureFormat=Color -/build:Fonts/BMP/Braille.bmp - -#begin GUI/Battle/Interface.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Battle/Interface.png - -#begin GUI/Menus/General.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Menus/General.png - -#begin Effects/BackdropShader.fx -/importer:EffectImporter -/processor:EffectProcessor -/processorParam:DebugMode=Auto -/build:Effects/BackdropShader.fx - -#begin Textures/Backdrops/Water.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Backdrops/Water.png - -#begin Textures/Backdrops/Grass.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Backdrops/Grass.png - -#begin GUI/Logos/3D.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Logos/3D.png - -#begin GUI/Logos/Pokemon_Small.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Logos/Pokemon_Small.png - -#begin Pokemon/Overworld/Normal/631.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/631.png - -#begin Pokemon/Overworld/Normal/643.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/643.png - -#begin Pokemon/Overworld/Normal/644.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/644.png - -#begin Pokemon/Overworld/Normal/646.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/646.png - -#begin Pokemon/Overworld/Shiny/631.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/631.png - -#begin Pokemon/Overworld/Shiny/643.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/643.png - -#begin Pokemon/Overworld/Shiny/644.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/644.png - -#begin Pokemon/Overworld/Shiny/646.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/646.png - -#begin Sounds/bump.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Best -/build:Sounds/bump.mp3 - -#begin Sounds/select.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Best -/build:Sounds/select.mp3 - -#begin GUI/Chat/Icons.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:GUI/Chat/Icons.png - -#begin Pokemon/Overworld/Shiny/721.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/721.png - -#begin Pokemon/Overworld/Normal/721.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/721.png - -#begin Pokemon/Sprites/Volcanion.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Sprites/Volcanion.png - -#begin Songs/cinnabar.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/cinnabar.mp3 - -#begin Songs/pallet.mp3 -/importer:Mp3Importer -/processor:SongProcessor -/processorParam:Quality=Low -/build:Songs/pallet.mp3 - -#begin Sounds/Cries/721.mp3 -/importer:Mp3Importer -/processor:SoundEffectProcessor -/processorParam:Quality=Low -/build:Sounds/Cries/721.mp3 - -#begin Textures/NPC/Blaine.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Blaine.png - -#begin Textures/NPC/Daisy.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/Daisy.png - -#begin Textures/NPC/RedMom.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NPC/RedMom.png - -#begin Textures/DiglettCave.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/DiglettCave.png - -#begin Textures/NES.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/NES.png - -#begin Textures/Emblem/earth.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/earth.png - -#begin Textures/Emblem/shooting star.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Textures/Emblem/shooting star.png - -#begin Pokemon/Overworld/Normal/422.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/422.png - -#begin Pokemon/Overworld/Normal/592.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Normal/592.png - -#begin Pokemon/Overworld/Shiny/422.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/422.png - -#begin Pokemon/Overworld/Shiny/592.png -/importer:TextureImporter -/processor:TextureProcessor -/processorParam:ColorKeyColor=255,0,255,255 -/processorParam:ColorKeyEnabled=True -/processorParam:GenerateMipmaps=False -/processorParam:PremultiplyAlpha=True -/processorParam:ResizeToPowerOfTwo=False -/processorParam:MakeSquare=False -/processorParam:TextureFormat=Color -/build:Pokemon/Overworld/Shiny/592.png - diff --git a/2.5DHero/2.5DHeroContent/GUI/Logos/KolbenBrand.png b/2.5DHero/2.5DHeroContent/GUI/Logos/KolbenBrand.png deleted file mode 100644 index 7870820d1..000000000 Binary files a/2.5DHero/2.5DHeroContent/GUI/Logos/KolbenBrand.png and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GUI/Logos/KolbenText.png b/2.5DHero/2.5DHeroContent/GUI/Logos/KolbenText.png deleted file mode 100644 index 674500f83..000000000 Binary files a/2.5DHero/2.5DHeroContent/GUI/Logos/KolbenText.png and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GUI/Logos/MonoGame.png b/2.5DHero/2.5DHeroContent/GUI/Logos/MonoGame.png new file mode 100644 index 000000000..a3b262d53 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GUI/Logos/MonoGame.png differ